*{margin:0;padding:0;box-sizing:border-box}

:root{
  --green:#24493a;
  --green-hover:#2a5240;
  --beige:#e8dcc4;
  --beige-light:#f5f0e6;
  --cream:#faf8f3;
  --dark:#2d3436;
  --muted:#636e72;
  --white:#fff;
}

body{
  font-family:'Montserrat',sans-serif;
  color:var(--dark);
  line-height:1.6;
  overflow-x:hidden
}

img{
  max-width:100%;
  height:auto;
  display:block
}

#servicos .container{
  max-width:1200px;
  margin:0 auto;
}

a{
  text-decoration:none;
  color:inherit
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 2rem
}

/* ===== HEADER ===== */

.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  background:var(--green);
  padding:1rem 0;
  transition:all .3s
}

.header.scrolled{
  padding:.5rem 0;
  box-shadow:0 2px 20px rgba(0,0,0,.15)
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center
}

.logo{
  display:flex;
  align-items:center;
  gap:.75rem;
  color:var(--white)
}

.logo-icon{
  width:48px;
  height:48px;
  background:var(--beige);
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:1.25rem;
  border-radius:4px
}

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.2
}

.logo-name{
  font-weight:700;
  font-size:1.1rem;
  letter-spacing:1px
}

.logo-sub{
  font-size:.75rem;
  letter-spacing:2px;
  opacity:.9
}

.menu-btn{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:.5rem
}

.menu-btn span{
  width:28px;
  height:3px;
  background:var(--white);
  border-radius:2px;
  transition:all .3s
}

.nav{
  display:flex;
  gap:2.5rem
}

.nav-link{
  color:var(--white);
  font-weight:500;
  font-size:.9rem;
  letter-spacing:.5px;
  transition:opacity .3s;
  position:relative
}

.nav-link:hover{opacity:.8}

.nav-link::after{
  content:'';
  position:absolute;
  bottom:-4px;
  left:0;
  width:0;
  height:2px;
  background:var(--beige);
  transition:width .3s
}

.nav-link:hover::after{width:100%}

/* ===== HERO ===== */

.hero{
  background:var(--beige-light);
  padding-top:80px
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
  padding:5rem 2rem 3rem
}

.hero-content h1{
  font-size:2.5rem;
  font-weight:700;
  color:var(--green);
  line-height:1.2;
  margin-bottom:1.5rem
}

.hero-content p{
  color:var(--muted);
  font-size:1rem;
  margin-bottom:2rem;
  line-height:1.7
}

.hero-img img{
  border-radius:8px;
  box-shadow:0 10px 40px rgba(0,0,0,.15);
  width:100%;
  height: 420px;
  object-fit:cover;
}

.btn-wpp{
  display:inline-flex;
  align-items:center;
  gap:.75rem;
  background:var(--green);
  color:var(--white);
  padding:1rem 2rem;
  border-radius:4px;
  font-weight:600;
  font-size:.95rem;
  letter-spacing:.5px;
  transition:all .3s;
  box-shadow:0 4px 15px rgba(45,85,69,.3)
}

.btn-wpp:hover{
  background:var(--green-hover);
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(45,85,69,.4)
}

.btn-wpp svg{fill:currentColor}

/* ===== FEATURES ===== */

.features-bar{
  background:var(--green);
  padding:2rem 0
}

.features-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  max-width:700px;
  margin:0 auto
}

.feature{
  display:flex;
  align-items:center;
  gap:1.5rem;
  color:var(--white)
}

.feature svg{
  color:var(--beige);
  flex-shrink:0
}

.feature span{
  font-size:1rem;
  font-weight:500
}

/* ===== SERVICES ===== */

.section-services{
  background:var(--green);
  padding:5rem 0
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
  margin-top:40px;
}

.reviews-photos-grid{
  grid-template-columns:repeat(2, minmax(260px, 360px));
  justify-content:center;
}
.service-card strong{
  display:block;
  margin-top:10px;
  font-size:.85rem;
  color:#555;
}

.service-card p:first-child{
  font-size:1.2rem;
  margin-bottom:10px;
}

.service-card{
  background:var(--beige);
  padding:2.5rem 2rem;
  border-radius:8px;
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:140px;
  transition:transform .3s
}

.service-card:hover{
  transform:translateY(-5px)
}

.service-card p{
  color:var(--dark);
  font-size:.95rem;
  line-height:1.6;
  font-weight:500
}

.service-card img{
  width:100%;
  border-radius:6px;
}

.review-card{
  display:block;
  text-align:left;
  min-height:auto;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.2);
  box-shadow:0 8px 24px rgba(0,0,0,.14);
  will-change:transform;
}

.service-card.review-card{
  padding:.35rem;
  height:auto;
  background:var(--beige-light);
  transition:transform .35s ease, box-shadow .35s ease;
}

.review-card .review-photo{
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center;
  border-radius:8px;
  display:block;
  transition:transform .45s ease;
}

.service-card.review-card::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,0) 55%, rgba(0,0,0,.08) 100%);
  opacity:0;
  pointer-events:none;
  transition:opacity .35s ease;
}

.service-card.review-card:hover{
  transform:translateY(-8px);
  box-shadow:0 14px 30px rgba(0,0,0,.2);
}

.service-card.review-card:hover .review-photo{
  transform:scale(1.015);
}

.service-card.review-card:hover::after{
  opacity:.35;
}

.review-card p{
  margin:0 0 10px;
}

.review-card p:last-child{
  margin-bottom:0;
}

.review-name{
  display:block;
  width:100%;
  text-align:center;
  margin-top:.45rem;
  font-family:'Montserrat',sans-serif;
  font-size:.95rem;
  font-weight:700;
  letter-spacing:.8px;
  text-transform:uppercase;
  color:var(--green);
}

.review-name-offset{
  margin-left:0;
}

/* ===== BENEFITS ===== */

.section-benefits{
  background:var(--beige-light);
  padding:5rem 0
}

.benefits-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center
}

.benefits-img img{
  border-radius:8px;
  box-shadow:0 10px 40px rgba(0,0,0,.1);
  width:100%;
  height:700px;
  object-fit:cover
}

.benefits-list{
  display:flex;
  flex-direction:column;
  gap:2rem
}

.benefit{
  display:flex;
  gap:1rem;
  align-items:flex-start
}

.benefit svg{
  flex-shrink:0;
  margin-top:2px
}

.benefit p{
  color:var(--dark);
  font-size:.95rem;
  line-height:1.7
}

.benefit strong{
  color:var(--green);
  font-weight:600
}

/* ===== ABOUT ===== */

.section-about{
  background:var(--cream);
  padding:5rem 0
}

.about-inner{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:start;
  text-align:left
}

.about-image{
  align-self:start;
}

.about-content p{
  color:var(--muted);
  font-size:1rem;
  line-height:1.8;
  margin-bottom:1.5rem
}

.about-image img{
  width:100%;
  height:605px;
  object-fit:cover;
  border-radius:8px;
  box-shadow:0 10px 40px rgba(0,0,0,.12);
}

.about-content .section-title{
  text-align:left;
  margin-top:0;
}
.section-about{
  width:100%;
  display:block;
  clear:both;
}

/* ===== REVIEWS ===== */

.section-reviews{
  background:var(--cream);
  padding:5rem 0;
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
  margin-top:3rem;
}

.review-card{
  background:white;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:all .3s;
}

.review-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.review-card img{
  width:100%;
  height:250px;
  object-fit:cover;
}

/* ===== HIGHLIGHT PHOTO ===== */

.section-highlight-photo{
  background:var(--cream);
  padding:4rem 0;
}

.highlight-photo-wrap{
  max-width:900px;
  margin:0 auto;
}

.highlight-photo-img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:8px;
  box-shadow:0 10px 40px rgba(0,0,0,.12);
}

/* ===== FOOTER ===== */

.footer{
  background:var(--green);
  color:var(--white);
  padding:3rem 0 1.5rem
}
.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:3rem;
  padding-bottom:2rem;
  margin-bottom:2rem;
  border-bottom:1px solid rgba(255,255,255,.1)
}

.footer-left{
  max-width:400px;
}

.footer-info{
  margin-top:1rem;
}

.footer-info p{
  margin:.4rem 0;
  font-size:.9rem;
  opacity:.9
}

.footer-info .instagram-item{
  display:flex;
  align-items:center;
  gap:.45rem;
}

.footer-info .address-item{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:.45rem;
  text-align:center;
}

.footer-info .address-item svg{
  flex-shrink:0;
  margin-top:2px;
}

.footer-info .address-item span{
  max-width:360px;
}

.footer-map{
  width:450px;
}

.footer-bottom{
  text-align:center;
  font-size:.85rem;
  opacity:.7
}

/* ===== WHATSAPP FLOAT ===== */

.wpp-float{
  position:fixed;
  bottom:2rem;
  right:2rem;
  width:60px;
  height:60px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
  z-index:999;
  transition:all .3s;
  animation:pulse 2s ease-in-out infinite
}

.wpp-float:hover{transform:scale(1.1)}

.wpp-float svg{fill:white}

@keyframes pulse{
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)}
  50%{box-shadow:0 4px 30px rgba(37,211,102,.7)}
}

/* ===== SCROLL ===== */

.fade-in{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .6s ease,transform .6s ease
}

.fade-in.visible{
  opacity:1;
  transform:translateY(0)
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px){
  .footer-map{
    width:100%;
    max-width:100%;
  }

  .hero-grid{
    gap:2.5rem;
  }
}

@media (max-width: 768px){
  .container{
    padding:0 1rem;
  }

  .header{
    padding:.75rem 0;
  }

  .menu-btn{display:flex}

  .nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:var(--green);
    flex-direction:column;
    padding:1.25rem 1rem;
    gap:1rem;
    transform:translateY(-120%);
    opacity:0;
    pointer-events:none;
    transition:all .3s;
  }

  .nav.open{
    transform:translateY(0);
    opacity:1;
    pointer-events:all;
  }

  .logo-icon{
    width:40px;
    height:40px;
    font-size:1rem;
  }

  .logo-name{font-size:.95rem}

  .logo-sub{
    font-size:.65rem;
    letter-spacing:1px;
  }

  .hero{
    padding-top:72px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:1.5rem;
    padding:2rem 0 2.5rem;
  }

  .hero-content.fade-in,
  .hero-content.fade-in.visible{
    margin-left:.5rem;
  }

  .hero-img{order:-1}

  .hero-content h1{font-size:1.55rem}

  .hero-content p{font-size:.95rem}

  .hero-img img{
    height:280px;
  }

  .btn-wpp{
    width:100%;
    justify-content:center;
    padding:.9rem 1rem;
    font-size:.9rem;
  }

  .features-grid{
    grid-template-columns:1fr;
    gap:1.5rem;
    padding:0 .5rem;
  }

  .feature{
    gap:1rem;
    align-items:flex-start;
    padding:0 .25rem;
  }

  .feature span{
    line-height:1.5;
  }

  .services-grid{grid-template-columns:1fr; gap:1rem}

  .reviews-photos-grid{
    grid-template-columns:minmax(250px, 360px);
  }

  .service-card{
    padding:1.25rem 1rem;
    min-height:auto;
  }

  .service-card p:first-child{
    font-size:1rem;
  }

  .review-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
  }

  .service-card.review-card{height:auto;}

  .review-card .review-photo{
    object-fit:contain;
    border-radius:8px;
  }

  .review-card p{
    width:100%;
  }

  .review-name-offset{
    margin-left:0;
  }

  .benefits-grid{
    grid-template-columns:1fr;
    gap:1.5rem;
  }

  .about-inner{
    grid-template-columns:1fr;
    gap:1.5rem;
    text-align:center;
  }

  .about-content .section-title{
    text-align:center;
  }

  .about-image img{
    height:auto;
    object-fit:contain;
  }

  .benefits-img{order:-1}

  .benefits-img img{
    height:auto;
    object-fit:contain;
  }

  .highlight-photo-img{
    height:auto;
  }

  .footer-top{
    flex-direction:column;
    gap:1.5rem;
    text-align:center;
  }

  .footer-left{
    max-width:100%;
  }

  .footer-info{text-align:center}

  .footer-info .instagram-item{
    justify-content:center;
  }

  .footer-info .address-item span{
    max-width:100%;
  }

  .footer-map{
    width:100%;
  }

  .wpp-float{
    width:52px;
    height:52px;
    right:1rem;
    bottom:1rem;
  }

  .wpp-float svg{
    width:26px;
    height:26px;
  }
}