/* assets/css/styles.css */
:root{
  /* nova paleta (verde leve, premium e acolhedora) */
  --bg: #FBFBF7;          /* quase branco quente */
  --surface: #FFFFFF;     /* cartões/áreas */
  --ink: #18211B;         /* texto principal (mais suave que preto) */
  --text: var(--ink);

  --primary: #2F5D50;     /* verde principal (menos pesado) */
  --primary-600: #244A40; /* hover */
  --sage: #AFC3B8;        /* verde claro para detalhes */
  --mist: #E7EFEA;        /* fundo alternativo/linhas suaves */
  --sand: #EFE9DC;        /* highlight discreto */

  --muted: rgba(24,33,27,.72);
  --border: rgba(47,93,80,.16);

  --radius: 18px;
  --shadow: 0 18px 45px rgba(0,0,0,.08);

  --container: 1120px;
  --header-h: 82px;

  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-title: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --text: var(--ink);
}


*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; }
.container{ width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
[id]{ scroll-margin-top: calc(var(--header-h) + 14px); }

.skip-link{
  position: absolute; left: -999px; top: 10px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 10px 12px; border-radius: 10px; z-index: 9999;
}
.skip-link:focus{ left: 12px; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--bg) 78%, #ffffff 22%);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | espaço | botão */
  align-items: center;
  gap: 12px;
}
.brand{ display: inline-flex; align-items: center; gap: 10px; text-decoration: none;justify-self: start; }
.brand img{ object-fit: contain; }

.nav-toggle{
   justify-self: end;
  margin-left: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  color: var(--primary);
}

.nav-toggle svg{
  width: 22px;
  height: 22px;
}

.nav-panel{
  position: fixed;
  inset: var(--header-h) 16px auto 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  display: none;
  box-shadow: var(--shadow);
  z-index: 55;
}

.nav-panel a{
  display: block;
  padding: 12px 12px;
  text-decoration: none;
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
}
.nav-panel a:hover{ background: color-mix(in oklab, var(--sand) 35%, #fff 65%); }
.nav-panel .nav-cta{
  background: var(--primary);
  color: #fff;
}
.nav-panel .nav-cta:hover{ background: var(--primary-600); }

.nav-panel.is-open{ display: block; }

.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 45;
}
.nav-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

body.nav-open{
  overflow: hidden;
}

@media (max-width: 420px){
  .brand img{
    display: flex;
    object-fit: contain;
    width: 70px;
    height: 70px;

  }

  .hero-actions{display: flex;gap: 12px;flex-wrap: wrap;margin-bottom: 10px;flex-direction: column;}
  /*section*/
  .hero-media{margin-bottom: -4em;}

  .card-feature{
  gap: 12px;
}
}

@media (min-width: 920px){
    .header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .nav-toggle{ display: none; }
  
  .nav-toggle{ display: none; }
  .nav-panel{
    position: static;
    inset: auto;
    display: flex !important;
    gap: 10px;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .nav-panel a{
    display: inline-flex;
    padding: 10px 12px;
    font-weight: 600;
  }
  .nav-panel a:hover{ background: color-mix(in oklab, var(--mist) 55%, #fff 45%); }
}

/* Buttons */
.btn{
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, opacity .15s ease;
  background: var(--surface);
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 26px rgba(0,0,0,.08); }
.btn:active{ transform: translateY(0); opacity: .95; }

.btn-primary{
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover{ background: var(--primary-600); }


.btn-ghost{
  background: transparent;
}
.btn-full{ width: 100%; }


/* Sections */
.section{ 
  padding: 72px 0; 
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}
.section-alt{ background: color-mix(in oklab, var(--mist) 68%, var(--bg) 32%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2{
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: -0.3px;
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  margin: 0 0 12px;
  color: var(--ink);
}
.section-lead{ margin: 0 0 26px; color: var(--muted); max-width: 72ch; }

.hero{
  padding: 56px 0 70px;
  content-visibility: visible; 
  background: radial-gradient(1200px 600px at 20% 20%, rgba(157,174,149,.24), transparent 55%),
              radial-gradient(900px 500px at 85% 30%, rgba(217,216,169,.30), transparent 58%);
}
.hero-grid{
  display: grid;
  gap: 26px;
  align-items: center;
}
@media (min-width: 920px){
  .hero-grid{ grid-template-columns: 1.1fr .9fr; gap: 38px; }
}
.kicker{
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .82rem;
}
.hero h1{
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  color: #111611;
}
.lead{ margin: 0 0 18px; color: var(--muted); max-width: 62ch; }
.hero-actions{ display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.micro{ margin: 0; color: rgba(27,31,25,.62); font-size: .95rem; }

.hero-media{ display: grid; gap: 14px; }
.portrait{
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}
.portrait img{ width: 100%; aspect-ratio: 13/16; object-fit: cover; }

.hero-card{
  border: 1px solid var(--border);
  background: color-mix(in oklab, #fff 80%, var(--bg) 20%);
  border-radius: 18px;
  padding: 16px;
}
.hero-card__title{ margin: 0 0 6px; font-weight: 800; color: var(--primary); }
.hero-card__text{ margin: 0; color: var(--muted); }

.two-col{
  display: grid;
  gap: 18px;
}

.about-highlight{
  margin-top: 18px;
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--mist) 55%, #fff 45%);
}
.about-visual{
  margin: 0;
  width: min(220px, 100%);
  justify-self: center;
}
.about-visual img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.about-highlight__text p{
  margin: 0 0 10px;
  color: var(--muted);
}
.about-highlight__text p:last-child{ margin-bottom: 0; }



@media (min-width: 920px){
   .two-col{
    grid-template-columns: 1.2fr .8fr; 
    gap: 36px;
    align-items: start;
  }
  .two-col > :first-child{ min-width: 0; }
  .two-col > aside{ position: sticky; top: calc(var(--header-h) + 16px); }
}

.aside-card{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: var(--surface);
  box-shadow: 0 14px 32px rgba(0,0,0,.06);
}
.aside-card__kicker{
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--primary);
}

.clean-list{ list-style: none; padding: 0; margin: 0 0 14px; }
.clean-list li{ padding: 10px 0; border-top: 1px dashed var(--border); color: var(--muted); }
.clean-list li:first-child{ border-top: 0; }

.chips{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--sand) 22%, #fff 78%);
  color: var(--primary);
  font-weight: 700;
  font-size: .92rem;
}

.steps-3{ grid-template-columns: 1fr; }

@media (min-width: 920px){
  .about-highlight{ grid-template-columns: 220px 1fr; gap: 18px; }
  .about-visual{ justify-self: start; }
}

@media (min-width: 840px){
  .steps-3{
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}


/* Cards */
.grid{ display: grid; gap: 14px; }
.cards-3{ grid-template-columns: 1fr; }
.cards-4{ grid-template-columns: 1fr; }
.cards-2{ grid-template-columns: 1fr; }
.card-media{
  margin: 0 0 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--mist) 55%, #fff 45%);
}

.card-media img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/4;
  object-fit: cover;
}

.card-feature--noimg .card-media{
  background: color-mix(in oklab, var(--mist) 65%, #fff 35%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/4;
}

.card-media--icon{
  aspect-ratio: 3 / 2;
}

.card-media--icon svg{
  width: 44px;
  height: 44px;
  color: var(--primary);
}

.card-feature{
  min-height: 520px; /* garante altura parecida entre cards */
  display: flex;
  flex-direction: column;
}

.card-feature .btn,
.card-feature .btn-row{
  margin-top: auto; /* empurra CTA pro final e alinha os cards */
}

.note{
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--mist) 58%, #fff 42%);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.8rem;
  font-style: italic;
}


@media (min-width: 840px){
  .cards-4{ grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .cards-2{ grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cards-3{ grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,.05);
}
.card h3{
  margin: 0 0 8px;
  font-family: var(--font-title);
  color: var(--primary);
  letter-spacing: -0.2px;
}
.card p{ margin: 0; color: var(--muted); }
.card-feature .meta{ margin-top: 10px; font-weight: 600; color: rgba(27,31,25,.64); }

.cta-band{
  margin-top: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--primary ) 8%, #fff 92%);
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cta-band__text{ margin: 0; font-weight: 700; color: var(--primary); }

.card-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: color-mix(in oklab, var(--mist) 70%, #fff 30%);
  border: 1px solid var(--border);
  color: var(--primary);
}
.card-icon svg{ width: 20px; height: 20px; }
.btn-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* FAQ */
.faq{ margin-top: 12px; display: grid; gap: 10px; }
.faq-item{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  padding: 6px 10px;
}
.faq-item summary{
  cursor: pointer;
  padding: 12px 8px;
  font-weight: 800;
  color: var(--primary);
  list-style: none;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-body{ padding: 0 8px 12px; color: var(--muted); }
.faq-item summary i,
.faq-item summary svg{
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--primary);
  transition: transform .2s ease;
}

/* gira o ícone quando abrir */
.faq-item[open] summary i,
.faq-item[open] summary svg{
  transform: rotate(180deg);
}

/* Contact */

.container-map{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem;
}

.contact-box{
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.05);
}
.contact-link{
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}
.contact-link svg, .contact-address svg{ width: 18px; height: 18px; color: var(--primary); }
.btn svg{ width: 18px; height: 18px; }
.btn-primary svg{ color: #fff; }
.contact-link:hover{ text-decoration: underline; }
.contact-address{ margin: 6px 0 14px; color: var(--muted); }

.map-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  padding: 12px;
}
.map-card iframe{
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 14px;
}

/* Footer */
.footer{
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 70%, #fff 30%);
}
.footer-inner{
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}
.footer-logo{ opacity: .95; }
.footer p{ margin: 0; color: rgba(27,31,25,.72); font-weight: 600; }
.footer-small{ font-size: .92rem; color: rgba(27,31,25,.58); }

/* WhatsApp float */
.whats-float-wrap{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;

  display: flex;
  flex-direction: column;
  align-items: flex-end; /* tudo alinhado à direita */
}

/* botão */
.whats-float{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.whats-float:hover{
  background: var(--primary-600);
  transform: translateY(-1px);
}

/* ícone lucide vira <svg> dentro do <i> */
.whats-float svg{
  width: 24px;
  height: 24px;
  color: #fff;
}

/* pop abre ancorado no wrap (que está fixed) */
.wa-pop{
  position: absolute;
  right: 0;
  bottom: 62px;

  width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.wa-pop__item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--ink);
}

.wa-pop__item:hover{
  background: color-mix(in oklab, var(--mist) 55%, #fff 45%);
}

.wa-pop__item svg{
  width: 18px;
  height: 18px;
  color: var(--primary);
}
