*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', sans-serif;
  background:#f7f4ef;
  color:#1f1f1f;
  overflow-x:hidden;
}

.container{
  width:92%;
  max-width:1400px;
  margin:auto;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}

/* HEADER */

.header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  background:rgba(247,244,239,0.85);
  backdrop-filter:blur(12px);
  z-index:1000;
  border-bottom:1px solid rgba(0,0,0,0.05);
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:5px 0;
}

.logo img{
  height:100px;
  width:auto;
  object-fit:contain;
  display:block;
}

.nav{
  display:flex;
  gap:40px;
}

.nav a{
  color:#28473d;
  font-size:15px;
  font-weight:500;
}

.btn-outline{
  border:1px solid #28473d;
  color:#28473d;
  padding:14px 28px;
  border-radius:100px;
  transition:.3s;
}

.btn-outline:hover{
  background:#28473d;
  color:white;
}

/* HERO */

.hero{
  padding-top:140px;
  padding-bottom:0;
  overflow:hidden;
  position:relative;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1.15fr;
  align-items:center;
  gap:0;
  min-height:90vh;
}

.hero-content{
  padding-right:80px;
  z-index:3;
}

.tag,
.section-tag{
  color:#b28b52;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
  margin-bottom:25px;
  display:block;
}

.hero h1{
  font-family:'Cormorant Garamond', serif;
  font-size:84px;
  line-height:0.98;
  color:#17362c;
  margin-bottom:30px;
  font-weight:600;
}

.hero p{
  font-size:18px;
  line-height:1.8;
  color:#555;
  margin-bottom:40px;
  max-width:600px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn-primary{
  background:#17362c;
  color:white;
  padding:16px 34px;
  border-radius:100px;
  transition:.3s;
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-secondary{
  border:1px solid #d6c8b2;
  color:#17362c;
  padding:16px 34px;
  border-radius:100px;
}

.hero-image{
  position:relative;
  height:100%;
}

.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0;
  box-shadow:none;
}

.hero-image::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:15%;
  height:100%;
  background:linear-gradient(
    to right,
    #f7f4ef 0%,
    rgba(247,244,239,0.92) 15%,
    rgba(247,244,239,0.45) 40%,
    rgba(247,244,239,0) 100%
  );
  z-index:2;
}

/* SECTION */

section{
  padding:120px 0;
}

.section-header{
  max-width:900px;
  margin-bottom:70px;
}

.section-header.center{
  text-align:center;
  margin:auto;
  margin-bottom:70px;
}

.section-header h2{
  font-family:'Cormorant Garamond', serif;
  font-size:60px;
  line-height:1.05;
  color:#17362c;
}

/* SERVICES */

.services-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:start;
}

.service-card{
  background:white;
  border-radius:32px;
  padding:30px;
  display:grid;
  grid-template-columns:1fr 320px;
  gap:35px;
  align-items:center;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
  height:100%;
}

.service-image img{
  width:100%;
  height:100%;
  min-height:340px;
  object-fit:cover;
  border-radius:20px;
}

.service-image{
  height:100%;
}

.service-content h3{
  font-family:'Cormorant Garamond', serif;
  font-size:44px;
  color:#17362c;
  margin-bottom:20px;
}

.service-content p{
  color:#666;
  line-height:1.8;
  margin-bottom:30px;
}

.service-content ul{
  list-style:none;
  margin-bottom:30px;
}

.service-content li{
  margin-bottom:14px;
  color:#17362c;
}

.service-link{
  color:#b28b52;
  font-weight:600;
}

/* AUDIENCE */

.audience-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.audience-item{
  background:white;
  border-radius:28px;
  padding:50px 30px;
  text-align:center;
}

.icon{
  font-size:40px;
  margin-bottom:20px;
  color:#b28b52;
}

.audience-item h4{
  color:#17362c;
  font-size:22px;
}

/* MISSION */

.mission{
  background:#17362c;
  color:white;
}

.mission-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}

.mission h2{
  font-family:'Cormorant Garamond', serif;
  font-size:60px;
  line-height:1.1;
}

.mission p{
  line-height:1.9;
  margin-bottom:25px;
  color:rgba(255,255,255,0.8);
}

/* BENEFITS */

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.benefit-card{
  background:white;
  border-radius:28px;
  padding:40px;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
}

.benefit-icon{
  font-size:28px;
  color:#b28b52;
  margin-bottom:25px;
}

.benefit-card h4{
  color:#17362c;
  margin-bottom:15px;
  font-size:22px;
}

.benefit-card p{
  line-height:1.7;
  color:#666;
}

/* FOOTER */

.footer{
  background:#f1ece4;
  padding:40px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:40px;
}

.footer-logo{
  height:150px;
  width:auto;
  object-fit:contain;
}

.footer h4{
  margin-bottom:20px;
  color:#17362c;
}

.footer p{
  margin-bottom:12px;
  color:#666;
}

/* RESPONSIVO */

@media(max-width:1100px){

  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-content{
    padding-right:0;
    margin-bottom:60px;
  }

  .services-wrapper{
    grid-template-columns:1fr;
  }

  .audience-grid{
    grid-template-columns:1fr 1fr;
  }

  .benefits-grid{
    grid-template-columns:1fr 1fr;
  }

  .mission-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:62px;
  }

  .section-header h2{
    font-size:46px;
  }

  .mission h2{
    font-size:44px;
  }

  .nav{
    display:none;
  }

}

@media(max-width:700px){

  .hero h1{
    font-size:48px;
  }

  .section-header h2{
    font-size:38px;
  }

  .audience-grid{
    grid-template-columns:1fr;
  }

  .benefits-grid{
    grid-template-columns:1fr;
  }

  .hero-buttons{
    flex-direction:column;
  }

}

/* PROFISSIONAIS */

.professionals{
  background:#f7f4ef;
}

.professionals-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.professional-card{
  background:white;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
  height:100%;
}

.professional-photo{
  height:420px;
  overflow:hidden;
}

.professional-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.professional-content{
  padding:35px;
}

.professional-content h3{
  font-family:'Cormorant Garamond', serif;
  font-size:42px;
  color:#17362c;
  margin-bottom:20px;
}

.professional-content p{
  color:#666;
  line-height:1.8;
  margin-bottom:18px;
}

.professional-content p:last-child{
  margin-bottom:0;
}

@media(max-width:900px){

  .professionals-grid{
    grid-template-columns:1fr;
  }

  .professional-photo{
    height:350px;
  }

}

.professional-crp{
  font-size:14px;
  color:rgba(23,54,44,0.6);
  font-weight:500;
  margin-top: -20px;
  margin-bottom:20px;
}