/* ===================================================== */
/* 0) DESIGN TOKENS (cores, tamanhos, sombras)            */
/* ===================================================== */
:root{
  --blue: #2f5f99;
  --green: #66b34b;
  --green-dark: #336824;
  --bg: #f7faf8;
  --text: #333;
  --white: #fff;

  --radius-lg: 28px;
  --radius-md: 14px;

  --shadow-sm: 0 6px 18px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 20px rgba(0,0,0,0.12);

  --container: 1200px;
}

/* ===================================================== */
/* 1) RESET / BASE                                       */
/* ===================================================== */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  scroll-behavior: smooth;
}

html{
  scroll-behavior: smooth;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  padding-top: 80px; /* header fixo */
  background:  var(--green);
  scroll-behavior: smooth;
}

img{
  max-width: 100%;
  display: block;
}

/* Container único (não repita em outros lugares) */
.container{
  width: min(var(--container), 92%);
  margin: 0 auto;
}

/* ===================================================== */
/* 2) HEADER / NAV                                       */
/* ===================================================== */
header{
  background: var(--white);
  color: var(--blue);
  padding: 10px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* NAV desktop */
nav ul{
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li{
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform .2s ease, background-color .2s ease;
}

nav ul li a{
  color: #474040;
  text-decoration: none;
}

nav ul li:hover{
  background: var(--green-dark);
  transform: translateY(-3px);
}
nav ul li:hover a{
  color: var(--white);
}

/* ===================================================== */
/* 3) MENU HAMBURGUER (MOBILE)                           */
/* ===================================================== */
.hamburger{
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span{
  width: 28px;
  height: 3px;
  background: #3b7a57;
  border-radius: 2px;
  transition: .3s;
}

/* Mobile */
@media (max-width: 768px){
  .hamburger{ display: flex; }

  nav{
    position: absolute;
    top: 90px;
    right: 20px;
    background: #D9FBD9;
    border-radius: 12px;
    padding: 15px 20px;
    display: none;
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  nav.active{ display: block; }

  nav ul{
    flex-direction: column;
    gap: 12px;
  }

  nav ul li{
    text-align: center;
  }
}

@media (max-width: 600px){
  header img{ display: none; }
}

/* ===================================================== */
/* 4) HERO                                               */
/* ===================================================== */
.hero{
  width: 100%;
  min-height: 520px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-left{
  flex: 1.15;
  background: var(--green);
  color: var(--white);
  padding: 60px 60px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;

  position: relative;
  z-index: 2;
  margin-right: -120px;
}

.hero-left h1{
  color: var(--blue);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.15;
}

.hero-left p{
  font-size: clamp(18px, 1.4vw, 28px);
  line-height: 1.45;
  opacity: .98;
}

.hero-left h2{
  margin-top: 10px;
  color: var(--blue);
  font-size: clamp(22px, 2.3vw, 40px);
  font-weight: 900;
  line-height: 1.15;
}

.hero-right{
  flex: 1;
  background: var(--white);
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero responsivo */
@media (max-width: 900px){
  .hero{ flex-direction: column; min-height: auto; }
  .hero-left{
    margin-right: 0;
    border-radius: 0;
    padding: 40px 22px;
    text-align: center;
    align-items: center;
  }
  .hero-right{ height: 320px; }
}

/* ===================================================== */
/* 5) CONSULTORIAS (cards verdes)                         */
/* ===================================================== */
.consultorias{
  background: var(--blue);
  padding: 80px 0;
}

.consultorias #title{
  text-transform: uppercase;
  position: relative;
  bottom: 70px;
  font-size: 3.0rem;
   
}

.consultorias span{
  color: #25D366;
}

.consultorias h1{
  color: var(--white);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  margin-bottom: 12px;
  text-align: center;
}

.consultorias .sub{
  color: var(--white);
  font-size: 28px;
  opacity: .9;
  margin-bottom: 50px;
  text-align: center;
  font-weight: bold;
}

/* classe NOVA pra não bater com .why-cards */
.consultorias-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}

.consultorias .card{
  background: #63b14a;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.consultorias .card h3{
  font-size: 22px;
  font-weight: 800;
}

.consultorias .card p{
  font-size: 15px;
  line-height: 1.6;
  opacity: .95;
}

.consultorias .card strong{
  margin-top: 8px;
  font-size: 15px;
}

.consultorias .card ul{
  padding-left: 18px;
}

.consultorias .card ul li{
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 6px;
}

/* Consultorias responsivo */
@media (max-width: 900px){
  .consultorias-cards{ grid-template-columns: 1fr; }
}

/* ===================================================== */
/* 6) OUTRAS SOLUÇÕES                                    */
/* ===================================================== */
.outras-solucoes{
  width: min(var(--container), 92%);
  margin: 80px auto;
  padding: 30px 20px;
  background: var(--blue);
  border-radius: 25px;
  color: #fff;
}

.outras-solucoes h2{
  font-size: 2.1rem;
  margin: 10px 0 30px;
}

.outras-solucoes p{
  color: #fff;
}

.cards-solucoes{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.card-solucao{
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform .2s ease;
}
.card-solucao:hover{ transform: translateY(-4px); }

.card-solucao h3{
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: black;
  
}

.card-solucao p{
  color: black;
  line-height: 1.6;
  font-size: .95rem;
}

.why-cards{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #25D366;
  border-radius: 20px;
  padding: 20px;
  font-weight: bold;
  font-size: 18px;
}

.why-cards p{
  font-size: 20px;
  font-weight: bold;
}

.why-cards ul li{
  font-size: 22px;
  font-weight: bold;
}


.why-cards h3{
  font-size: 24px;
  font-weight: bold;
  background-color: var(--blue);
  padding: 10px;
  border-radius: 20px;
}

/* ===================================================== */
/* 7) EXTRAS                                             */
/* ===================================================== */
.extras{
  width: min(var(--container), 92%);
  margin: 60px auto 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 20px 0;
}

.extra-box h3{ 
  margin-bottom: 10px; 
  font-weight: bold; 
  font-size: 1.6rem; 
}
.extra-box p{ 
  color: #fff; 
  line-height: 1.6; 
  font-size: 1.2rem;
}

/* ===================================================== */
/* 8) WHY CHOOSE                                         */
/* ===================================================== */
.why-choose {
  /* max-width: 1100px; */
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  background-color: var(--blue);
}

.why-choose h1 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #f7faf8;
}

.cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.cardy {
  background: #fff;
  border-radius: 14px;
  padding: 60px 25px 30px;
  max-width: 320px;
  position: relative;
  border: 2px solid #5a8f6b;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.cardy:hover {
  transform: translateY(-5px);
}

.cardy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  width: 100%;
  background: #5a8f6b;
  border-radius: 14px 14px 0 0;
}

.icon {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  background: #5a8f6b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cardy h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #2f4f3a;
}

.cardy p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: black;
}

.divider {
  margin: 50px 0 30px;
  height: 2px;
  background: #3b7a57;
  width: 100%;
}

.highlight {
  padding: 20px 25px;
  margin: 40px 0;
  background: #f7fbf8;
  border-left: 4px solid #5a8f6b;
  border-top: 1px solid #cdded2;
  color: #2f4f3a;
  font-size: 1.05rem;
  font-weight: 600;
}


.buttons{
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn{
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all .2s ease;
}

.btn.primary{
  background: #f7faf8;
  color: black;
  
}
.btn.primary:hover{ background: #3b7a57; color: #f7faf8; }

.btn.outline{
  border: 2px solid #3b7a57;
  color: black;
  background-color: #f7faf8;
  
}
.btn.outline:hover{
  background: #3b7a57;
  color: var(--white);
}

/* WHY responsivo */
@media (max-width: 768px){
  .why-cards{ flex-direction: column; align-items: center; }
}
@media (max-width: 600px){
  .why-choose h1{ font-size: 2rem; }
  .buttons{ flex-direction: column; }
  .btn{ width: 100%; text-align: center; }
}

/* ===================================================== */
/* 9) WHATSAPP FIXO                                      */
/* ===================================================== */
.whatsapp-fixo{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-fixo img{
  width: 32px;
  height: 32px;
}

.whatsapp-fixo:hover{
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ===================================================== */
/* 10) FOOTER                                            */
/* ===================================================== */
.footer{
  background: #1f2933;
  color: var(--white);
  text-align: center;
  padding: 15px 10px;
  font-size: .9rem;
}

.footer strong{ color: #4ade80; }
footer p a{
  color: #4ade80;
  text-decoration: none;
}



/* ===================================================== */
/* ✅ FIX + RESPONSIVO (SEM ALTERAR HTML/CLASSES)         */
/* Cole no FINAL do CSS / final do <style>               */
/* ===================================================== */

/* --------- 1) CONSULTORIAS: .why-cards vira CARD --------- */
.consultorias .consultorias-cards .why-cards{
  background: #63b14a;              /* mesmo verde dos cards */
  color: #fff;
  border-radius: 28px;
  padding: 36px 32px;

  display: flex;                     /* card em coluna */
  flex-direction: column;
  gap: 14px;

  font-weight: 400;                  /* evita texto "pesado" em tudo */
}

/* força texto branco dentro do card (resolve ficar preto) */
.consultorias .consultorias-cards .why-cards,
.consultorias .consultorias-cards .why-cards *{
  color: #fff;
}

/* título do card */
.consultorias .consultorias-cards .why-cards h3{
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
}

/* parágrafo */
.consultorias .consultorias-cards .why-cards p{
  font-size: 15px;
  line-height: 1.6;
  opacity: .95;
}

/* strong como "subtítulo" (quebra linha e dá respiro) */
.consultorias .consultorias-cards .why-cards strong{
  display: block;
  margin-top: 10px;
  font-weight: 800;
}

/* listas alinhadas (sem recuo exagerado) */
.consultorias .consultorias-cards .why-cards ul{
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.consultorias .consultorias-cards .why-cards li{
  margin: 4px 0;
  font-size: 14px;
  line-height: 1.5;
}

/* --------- 2) GRID responsivo (3 -> 2 -> 1 colunas) --------- */
@media (max-width: 1024px){
  .consultorias-cards{
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 700px){
  .consultorias{
    padding: 60px 0;
  }

  .consultorias-cards{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .consultorias #title{
    padding: 20px;
    margin: 0px auto;
    position: relative;
    bottom: 15px;
    font-size: 1.2rem;
  }

  .consultorias .consultorias-cards .why-cards{
    padding: 26px 20px;
    border-radius: 20px;
  }

  .consultorias h1{
    font-size: 34px;
    padding: 0 10px;
  }

  .consultorias .sub{
    font-size: 16px;
    padding: 0 10px;
  }
}

/* --------- 3) WHY-CHOOSE: garante lado a lado no desktop --------- */
@media (min-width: 901px){
  .why-choose .cards{
    flex-wrap: nowrap;         /* 3 lado a lado */
    align-items: stretch;
  }
  .why-choose .cardy{
    flex: 1;
  }
}

@media (max-width: 900px){
  .why-choose .cards{
    flex-wrap: wrap;           /* quebra no tablet */
  }
  .why-choose .cardy{
    width: min(420px, 92vw);
    max-width: none;
  }
}

@media (max-width: 768px){
  .why-choose .cards{
    flex-direction: column;    /* coluna no mobile */
    align-items: center;
  }
}


