:root{
  --bg:#f7f3ee;
  --bg-soft:#f2ece4;
  --green:#7f8d74;
  --green-dark:#66725d;
  --text:#2d2b28;
  --muted:#6b6b6b;
  --white:#ffffff;
  --border:#e8e0d8;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.container{
  width:90%;
  max-width:1250px;
  margin:auto;
}

/* HEADER */

header{
  padding:28px 0;
  position:sticky;
  top:0;
  background:rgba(247,243,238,0.95);
  backdrop-filter:blur(10px);
  z-index:999;
  border-bottom:1px solid rgba(0,0,0,0.03);
  transition:0.3s;
}

nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo-icon{
  width:44px;
  height:44px;
  border:1px solid var(--green);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--green);
  font-size:20px;
}

.logo h2{
  font-family:'Cormorant Garamond',serif;
  font-size:34px;
  line-height:0.9;
  font-weight:600;
}

.logo span{
  display:block;
  font-size:11px;
  letter-spacing:3px;
  color:var(--green);
  margin-top:6px;
}

.menu{
  display:flex;
  gap:38px;
  list-style:none;
}

.menu a{
  color:var(--text);
  font-size:15px;
  transition:0.3s;
}

.menu a:hover{
  color:var(--green);
}

.menu a.active{
  color:var(--green);
}

.btn{
  background:var(--green);
  color:white;
  padding:15px 26px;
  border-radius:40px;
  font-size:15px;
  transition:0.3s;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.btn:hover{
  background:var(--green-dark);
  transform:translateY(-2px);
}

.secondary-btn{
  border:1px solid var(--green);
  color:var(--green);
  background:transparent;
}

.secondary-btn:hover{
  background:var(--green);
  color:white;
}

/* HERO */

.hero{
  padding:80px 0 50px;
  position:relative;
}

.hero::before{
  content:'';
  width:700px;
  height:700px;
  background:#efe7de;
  position:absolute;
  left:-300px;
  top:-100px;
  border-radius:50%;
  z-index:-1;
}

.hero-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.hero-text h1{
  font-family:'Cormorant Garamond',serif;
  font-size:82px;
  line-height:0.95;
  font-weight:600;
  margin-bottom:30px;
}

.highlight{
  color:var(--green);
  font-style:italic;
}

.hero-text p{
  font-size:20px;
  color:var(--muted);
  margin-bottom:12px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  margin-top:45px;
  flex-wrap:wrap;
}

.hero-image{
  position:relative;
}

.hero-image img{
  border-radius:36px;
  height:760px;
  object-fit:cover;
  box-shadow:0 30px 70px rgba(0,0,0,0.08);
}

.badge{
  position:absolute;
  right:-40px;
  bottom:50px;
  background:#efe7de;
  width:170px;
  height:170px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:15px;
  color:var(--green-dark);
  line-height:1.6;
  border:8px solid rgba(255,255,255,0.8);
}

/* GERAL */

section{
  padding:120px 0;
  scroll-margin-top:80px
}

.section-label{
  color:#a18c75;
  letter-spacing:2px;
  font-size:13px;
  text-transform:uppercase;
  margin-bottom:12px;
}

.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:62px;
  line-height:1;
  margin-bottom:30px;
}

/* ABOUT */

.about{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:70px;
  align-items:center;
}

.about-image img{
  border-radius:28px;
  height:650px;
  object-fit:cover;
}

.about-text p{
  color:var(--muted);
  font-size:18px;
  line-height:1.9;
  margin-bottom:20px;
}

.about-box{
  background:var(--green);
  color:white;
  padding:40px;
  border-radius:28px;
  margin-top:40px;
}

.about-box-item{
  padding:22px 0;
  border-bottom:1px solid rgba(255,255,255,0.15);
}

.about-box-item:last-child{
  border:none;
  padding-bottom:0;
}

/* SERVICES */

.services-header{
  margin-bottom:50px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.service-card{
  background:rgba(255,255,255,0.7);
  border:1px solid var(--border);
  padding:45px 35px;
  border-radius:28px;
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.service-icon{
  width:70px;
  height:70px;
  background:#efe7de;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin-bottom:25px;
}

.service-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:36px;
  margin-bottom:18px;
}

.service-card p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:20px;
}

.service-card a{
  color:var(--green);
  font-weight:600;
}

/* BENEFITS */

.benefits{
  background:var(--bg-soft);
  border-radius:40px;
  padding:10px;
  margin-top: -60px;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.benefit{
  background:white;
  padding:35px;
  border-radius:24px;
  text-align:center;
}

.benefit-icon{
  font-size:36px;
  margin-bottom:20px;
}

.benefit h4{
  margin-bottom:12px;
  font-size:20px;
}

.benefit p{
  color:var(--muted);
  line-height:1.7;
}

/* CTA */

.cta{
  text-align:center;
  padding:50px 0;
  margin-top:-110px;
}

.cta h2{
  font-family:'Cormorant Garamond',serif;
  font-size:72px;
  line-height:1;
  margin-bottom:20px;
}

.cta p{
  color:var(--green);
  font-style:italic;
  font-size:30px;
  margin-bottom:45px;
  font-family:'Cormorant Garamond',serif;
}

/* FOOTER */

footer{
  background:#ede5db;
  padding:45px 0;
  text-align:center;
}

footer p{
  color:#6b6b6b;
}

/* WHATS */

.whatsapp{
  position:fixed;
  right:25px;
  bottom:25px;
  width:68px;
  height:68px;
  border-radius:50%;
  background:#25d366;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  z-index:999;
}

/* RESPONSIVO */

@media(max-width:1100px){

  .hero-content,
  .about,
  .services-grid,
  .benefits-grid{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:58px;
  }

  .section-title{
    font-size:48px;
  }

  .cta h2{
    font-size:50px;
  }

  .hero-image img{
    height:auto;
  }

  nav{
    flex-direction:column;
    gap:30px;
  }

  .menu{
    flex-wrap:wrap;
    justify-content:center;
  }

}

@media(max-width:700px){

  .hero-text h1{
    font-size:48px;
  }

  .section-title{
    font-size:42px;
  }

  .cta h2{
    font-size:42px;
  }

  .hero-buttons{
    flex-direction:column;
  }

}