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

body{
  font-family:'Montserrat', Helvetica, Arial, sans-serif;
  background:#f6f7f8;
  color:#222;
  line-height:1.7;
  font-weight:400;
}

p{
  font-size:15px;
  font-weight:400;
  color:#666;
  line-height:1.85;
  letter-spacing:0.15px;
}

h1,h2,h3,h4{
  font-family:'Montserrat', Helvetica, Arial, sans-serif;
  font-weight:600;
  letter-spacing:-0.3px;
}

h1{font-size:42px;font-weight:700}
h2{font-size:34px}
h3{font-size:18px}

/* ================= VARIÁVEIS ================= */
:root{
  --verde:#6cab3d;
  --verde-escuro:#3e6f24;
  --cinza:#f0f0f0;
  --branco:#fff;
}

/* ================= CONTAINER ================= */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* ================= HEADER ================= */
header{
  background:#fff;
  position:fixed;
  top:0;
  width:100%;
  z-index:99;
  box-shadow:0 2px 10px rgba(0,0,0,.06);
}

.header-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:90px;
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  height:100%;
}

.logo a{
  display:flex;
  align-items:center;
  height:100%;
}

/* IMAGEM DA LOGO */
.logo img{
  height:48px;
  max-width:222px;
  object-fit:contain;
}

/* BOTÃO WHATSAPP */
.btn-whats{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 12px 22px;       /* controla altura REAL */
  line-height: 1;           /* elimina altura fantasma */
  height: auto;             /* remove rigidez */

  background: var(--verde);
  color:#fff;
  border-radius: 999px;

  font-size:14px;
  font-weight:600;
  text-decoration:none;

  white-space: nowrap;
}

/* ================= HERO ================= */
.hero{
  margin-top: 0;              /* remove o chute atual */
  padding-top: 140px;         /* espaço REAL do topo */
  padding-bottom: 60px;       /* mantém o fundo bonito */

  background:
    linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.30)),
    url("/img/banner4.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}


.hero-content{
  max-width:900px;
}

.hero h1{
  font-size:42px;
  margin-bottom:24px;
}

.hero p{
  font-size:18px;
  color:#fff;
  margin-bottom:34px;
}

.hero a{
  display:inline-block;
  margin-right:15px;
  padding:14px 26px;
  border-radius:30px;
  font-weight:bold;
  text-decoration:none;
}

.hero .primary{
  background:var(--verde);
  color:#fff;
}

.hero .secondary{
  background:#fff;
  color:#000;
}

/* HOVER (desktop) */
.service-card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.service-card:hover .service-icon{
  background:var(--verde);
  color:#fff;
  transform:scale(1.1) rotate(5deg);
}

/* ATIVO (mobile / scroll) */
.service-card.active{
  transform:translateY(-12px);
  box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.service-card.active .service-icon{
  background:var(--verde);
  color:#fff;
  transform:scale(1.1) rotate(5deg);
}

/* ================= SEÇÕES ================= */
section{
  padding:90px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:34px;
  color:var(--verde-escuro);
}

/* ================= SERVIÇOS ================= */
.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:40px;
}

.service-card{
  background:#fff;
  padding:45px 30px 35px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  position:relative;
  text-align:center;
  transition:all .35s ease;
}

.service-card::before{
  content:"";
  position:absolute;
  top:-22px;
  left:50%;
  transform:translateX(-50%);
  border-left:35px solid transparent;
  border-right:35px solid transparent;
  border-bottom:22px solid #fff;
}

.service-icon{
  width:70px;
  height:70px;
  margin:0 auto 15px;
  background:rgba(108,171,61,.12);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  color:var(--verde);
  transition:all .35s ease;
}

.service-card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.service-card:hover .service-icon{
  background:var(--verde);
  color:#fff;
  transform:scale(1.1) rotate(5deg);
}

.service-card h3{
  color:var(--verde-escuro);
  margin-bottom:10px;
}

/* ================= SOBRE ================= */
.about{
  background:#fff;
}

.about-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about img{
  width:100%;
  border-radius:20px;
}

.about h3{
  color:var(--verde-escuro);
  margin-bottom:15px;
}

.about ul{
  margin-top:20px;
}

.about li{
  margin-bottom:10px;
}

/* ================= COMO FUNCIONA ================= */
.steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  text-align:center;
}

.step{
  background:#fff;
  padding:35px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.07);
  font-weight:bold;
}

/* ================= CONTATO ================= */
.contact{
  background:var(--verde-escuro);
  color:#fff;
  text-align:center;
}

.contact a{
  display:inline-block;
  margin-top:25px;
  background:#fff;
  color:#000;
  padding:15px 35px;
  border-radius:30px;
  font-weight:bold;
  text-decoration:none;
}

/* ================= FOOTER ================= */
footer{
  background:#111;
  color:#fff;
  text-align:center;
  padding:20px;
  font-size:14px;
}

/* ================= MOBILE (AJUSTE FINO DE LEITURA) ================= */
@media (max-width:768px){

  header{
    height:auto;
  }

  .header-box{
    height:80px;
  }

  .hero-content{
    max-width:100%;
  }

  .hero h1{
    font-size:30px;
    line-height:1.3;
    margin-bottom:28px;
  }

.section-title h2{
  font-size:28px;
  line-height:1.35;
}

  .hero p{
    font-size:16px;
    line-height:1.9;
    margin-bottom:38px;
    max-width:95%;
  }

  .hero-content a{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    padding:16px 0;
    margin-bottom:16px;
    font-size:16px;
  }

  .hero-content a:first-of-type{
    margin-top:8px;
  }

  section{
    padding:65px 0;
  }

  .section-title{
    margin-bottom:45px;
  }

  .about-box{
    grid-template-columns:1fr;
  }
}

/* ================= DESATIVAR INTERAÇÃO MANUAL NO MOBILE ================= */
@media (max-width: 768px){

  .service-card,
  .service-card *{
    pointer-events: none;
  }

}

.about ul{
  list-style: none;
  padding-left: 0;
}

.about li{
  margin-bottom:12px;
  line-height:1.6;
}

/* ================= STEPS ICONES ================= */

.step{
  background:#fff;
  padding:40px 30px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.07);
  text-align:center;
  font-weight:500;
}

.step-icon{
  width:80px;
  height:80px;
  margin:0 auto 18px;
  background:rgba(108,171,61,.12);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  color:var(--verde-escuro);
  font-size:32px;
}

.step-number{
  position:absolute;
  top:-8px;
  right:-8px;
  width:28px;
  height:28px;
  background:var(--verde);
  color:#fff;
  font-size:14px;
  font-weight:700;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 10px rgba(0,0,0,.2);
}

.step p{
  font-size:15px;
  color:#333;
  line-height:1.6;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

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

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.faq{
  background:#fff;
}

.faq-accordion{
  max-width:900px;
  margin:0 auto;
}

.faq-item{
  border-bottom:1px solid #e6e6e6;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:18px 10px;
  text-align:left;
  font-size:17px;
  font-weight:600;
  color:var(--verde-escuro);
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.faq-question .icon{
  font-size:22px;
  font-weight:700;
  transition:transform .3s ease;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-answer p{
  padding:0 10px 18px;
  font-size:15px;
  color:#555;
  line-height:1.7;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

.faq-item.active .faq-question .icon{
  transform:rotate(45deg);
}

.zones{
  background:#eef2ed;
}

.zones-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:40px;
  margin-top:40px;
}

.zone-card{
  background:#fff;
  padding:40px 30px;
  border-radius:22px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  text-align:center;
}

.zone-icon{
  width:70px;
  height:70px;
  margin:0 auto 18px;
  background:rgba(108,171,61,.15);
  color:var(--verde-escuro);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
}

.zone-card h3{
  color:var(--verde-escuro);
  margin-bottom:12px;
}

.zone-card p{
  font-size:15px;
  color:#555;
  margin-bottom:18px;
}

.zone-card ul{
  list-style:none;
  padding:0;
}

.zone-card li{
  font-size:14px;
  color:#444;
  margin-bottom:6px;
}

.zone-note{
  max-width:900px;
  margin:50px auto 0;
  text-align:center;
  font-size:14px;
  color:#666;
}

.services-footer{
  margin-top:60px;
  text-align:center;
}

.services-footer p{
  font-size:15px;
  color:#555;
  margin-bottom:12px;
}

.services-footer a{
  font-size:15px;
  font-weight:600;
  color:var(--verde-escuro);
  text-decoration:none;
}

.services-footer a:hover{
  text-decoration:underline;
}

#regioes{
  scroll-margin-top: 40px; /* ajuste fino aqui */
}

/* ================= HUB DE SERVIÇOS ================= */

.service-hub-card h4{
  font-size:14px;
  font-weight:700;
  color:var(--verde);
  margin:18px 0 8px;
  text-transform:uppercase;
  letter-spacing:.6px;
}

.service-hub-card ul + h4{
  margin-top:22px;
}

.service-hub-card h4{
  font-size:14px;
  font-weight:700;
  color:var(--verde);
  margin:18px 0 8px;
  text-transform:uppercase;
  letter-spacing:.6px;
}

.service-hub-card ul + h4{
  margin-top:22px;
}

.services-hub-intro{
  background:#edf3ec;
  padding:120px 0 60px;
}

.services-hub-intro h1{
  font-size:36px;
  color:var(--verde-escuro);
  margin-bottom:20px;
}

.services-hub-intro p{
  max-width:850px;
  font-size:17px;
  color:#555;
}


/* GRID */

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:35px;
}

.services-hub{
  background:#f2f4f2;
  padding:80px 0;
}

/* CARD */
.service-hub-card{
  background:#fff;
  border-radius:22px;
  padding:40px 32px;
  text-decoration:none;
  color:#222;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  transition:all .35s ease;
  display:flex;
  flex-direction:column;
  position:relative;
}

/* ÍCONE */
.service-hub-card .icon{
  width:70px;
  height:70px;
  background:rgba(108,171,61,.15);
  color:var(--verde-escuro);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin-bottom:18px;
  transition:.35s;
}

/* TÍTULO */
.service-hub-card h3{
  font-size:20px;
  margin-bottom:16px;
  color:var(--verde-escuro);
}

/* LISTA */
.service-hub-card ul{
  list-style:none;
  padding:0;
  margin-bottom:22px;
}

.service-hub-card li{
  font-size:15px;
  color:#555;
  margin-bottom:8px;
  line-height:1.6;
}

/* CTA */
.service-hub-card .cta{
  margin-top:auto;
  font-weight:600;
  color:var(--verde-escuro);
  text-decoration: none; /* <<< ISSO */
}

/* HOVER DESKTOP */
.service-hub-card:hover{
  transform:translateY(-14px);
  box-shadow:0 28px 65px rgba(0,0,0,.15);
}

.service-hub-card:hover .icon{
  background:var(--verde);
  color:#fff;
  transform:scale(1.1) rotate(6deg);
}

/* DESTAQUE (CONSULTORIA) */
.service-hub-card.destaque{
  border:2px solid var(--verde);
}

.service-hub-card.destaque .cta{
  color:var(--verde);
}

/* ATIVO MOBILE (SCROLL) */
.service-hub-card.active{
  transform:translateY(-14px);
  box-shadow:0 28px 65px rgba(0,0,0,.15);
}

.service-hub-card.active .icon{
  background:var(--verde);
  color:#fff;
  transform:scale(1.1) rotate(6deg);
}

/* ================= CTA FINAL ================= */

.services-hub-cta{
  background:var(--verde-escuro);
  padding:70px 0;
  text-align:center;
  color:#fff;
}

.services-hub-cta h2{
  font-size:30px;
  margin-bottom:18px;
}

.services-hub-cta p{
  font-size:17px;
  margin-bottom:28px;
  color:#e6e6e6;
}

.services-hub-cta a{
  display:inline-block;
  background:#fff;
  color:#000;
  padding:15px 40px;
  border-radius:30px;
  font-weight:700;
  text-decoration:none;
  transition:.3s;
}

.services-hub-cta a:hover{
  transform:scale(1.05);
}


/* ================= AJUSTE REAL DO TÍTULO ================= */

.services-hub-intro{
  padding-top:120px;
  padding-bottom:120px;
}

.services-hub-intro .services-title{
  text-align:center;
  margin:0 auto 70px;
  font-size:36px;
  font-weight:700;
  color:var(--verde-escuro);
}

/* ================= H1 MOBILE – SERVIÇOS ================= */
@media (max-width: 768px){

  .services-hub-intro .services-title{
    font-size: 26px;      /* tamanho ideal mobile */
    line-height: 1.25;
    margin-bottom: 60px; /* reduz espaço */
  }

}

/* Links discretos dentro da lista (CSAO) */
.service-hub-card ul li a{
  color: #555;               /* mesma cor do texto */
  text-decoration: none;     /* remove sublinhado */
  font-weight: inherit;      /* não destaca */
}

/* Hover bem sutil */
.service-hub-card ul li a:hover{
  color: var(--verde-escuro); /* muda só a cor */
}
