/* GrainSave — landing page
   Design source: "GrainSave Landing.dc.html" (Claude Design project f1b6c204) */

:root {
  --orange: #FF6A00;
  --orange-hover: #ff8c42;
  --ink: #0d0d0d;
  --ink-soft: #1a1a1a;
  --ink-deep: #050505;
  --cream: #F3E9DD;
  --white: #fff;
  --bar-muted: #c9c2b6;
  --wa-green: #25D366;

  --on-dark-1: rgba(255, 255, 255, .8);
  --on-dark-2: rgba(255, 255, 255, .65);
  --on-dark-3: rgba(255, 255, 255, .6);
  --on-dark-4: rgba(255, 255, 255, .55);
  --on-dark-5: rgba(255, 255, 255, .5);
  --hairline: rgba(255, 255, 255, .08);

  --display: 'Anton', sans-serif;
  --body: 'Inter', sans-serif;

  --pad-x: clamp(20px, 5vw, 40px);
  --section-y: clamp(70px, 10vw, 110px);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-hover); }

h1, h2 { margin: 0; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gs-fade { animation: fadeUp .7s ease both; }

@media (prefers-reduced-motion: reduce) {
  .gs-fade { animation: none; }
  * { scroll-behavior: auto !important; }
}

html { scroll-behavior: smooth; }

/* ---------- layout helpers ---------- */
.wrap-720  { max-width: 720px;  margin: 0 auto; }
.wrap-800  { max-width: 800px;  margin: 0 auto; }
.wrap-820  { max-width: 820px;  margin: 0 auto; }
.wrap-900  { max-width: 900px;  margin: 0 auto; }
.wrap-1100 { max-width: 1100px; margin: 0 auto; }
.wrap-1180 { max-width: 1180px; margin: 0 auto; }

.center { text-align: center; }
.mb-28 { margin-bottom: 28px; }
.mb-48 { margin-bottom: 48px; }
.mb-56 { margin-bottom: 56px; }
.accent { color: var(--orange); }
.muted  { color: #999; }

.section { padding: var(--section-y) var(--pad-x); }
.section-dark  { background: var(--ink); }
.section-cream { background: var(--cream); }
.section-panel { background: var(--ink-soft); }

/* ---------- image slots ---------- */
.slot {
  position: absolute;
  inset: 0;
  background: #141414;
  overflow: hidden;
}
.slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slot-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(255, 255, 255, .38);
  border: 1px dashed rgba(255, 255, 255, .16);
  background: repeating-linear-gradient(45deg, #131313 0 10px, #171717 10px 20px);
}

/* ---------- buttons ---------- */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  white-space: nowrap;
  max-width: 100%; /* nunca passa da largura do container (evita rolagem horizontal) */
  transition: background .18s ease, transform .18s ease;
}
.btn-primary:hover { background: var(--orange-hover); color: var(--white); }
.btn-primary:active { transform: translateY(1px); }

/* Botões grandes têm texto longo: em telas estreitas deixam quebrar linha
   e centralizam, em vez de estourar para fora da tela. */
.btn-lg, .btn-xl { white-space: normal; text-align: center; }

.btn-sm { font-weight: 700; font-size: 13px; padding: 11px 18px; border-radius: 6px; }
.btn-lg {
  font-size: clamp(15px, 1.6vw, 17px);
  padding: 18px clamp(20px, 4vw, 30px); /* padding lateral encolhe no mobile */
  box-shadow: 0 8px 24px rgba(255, 106, 0, .35);
}
.btn-xl {
  font-size: clamp(16px, 1.8vw, 18px);
  padding: 20px clamp(22px, 5vw, 36px);
  box-shadow: 0 8px 28px rgba(255, 106, 0, .4);
}

:where(a, button, input):focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; flex: none; }
.brand-logo {
  height: 30px;
  width: auto;
  display: block;
}

.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  font-weight: 500;
}
.nav-desktop a:hover { color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 6px;
  width: 40px;
  height: 40px;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
}

.nav-mobile {
  background: #141414;
  border-top: 1px solid var(--hairline);
  padding: 16px clamp(16px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a { color: var(--white); font-size: 15px; font-weight: 600; }

.nav-mobile-cta {
  display: none;
  justify-content: center;
  font-size: 15px;
  padding: 15px 18px;
  margin-top: 4px;
  color: var(--white);
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
}
@media (min-width: 901px) {
  .nav-mobile { display: none; }
}

/* Abaixo de 600px o logo (137px) + CTA (160px) + ☰ estouram a barra:
   o CTA sai do header e reaparece dentro do menu. */
@media (max-width: 600px) {
  .header-actions .btn-sm { display: none; }
  .nav-mobile-cta { display: flex; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vw, 90px) var(--pad-x);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg,
    #0d0d0d 8%,
    rgba(13, 13, 13, .97) 30%,
    rgba(13, 13, 13, .7) 48%,
    rgba(13, 13, 13, .15) 70%,
    rgba(13, 13, 13, 0) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-copy { max-width: 640px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 106, 0, .12);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(38px, 6.5vw, 68px);
  line-height: 1.02;
  color: var(--white);
  margin: 0 0 20px;
  text-transform: uppercase;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: var(--on-dark-1);
  margin: 0 0 32px;
  max-width: 520px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.scroll-hint {
  position: absolute;
  left: 0;
  bottom: -60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--on-dark-4);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
}
.scroll-hint:hover { color: var(--white); }
.scroll-arrow { font-size: 18px; }

@media (max-width: 900px) {
  .scroll-hint { display: none; }
}

/* ---------- carrossel do hero ---------- */
.hero-carousel {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(46%, 600px);
  height: 70%;
  pointer-events: none;
  z-index: 0; /* atrás do texto (que está no fluxo do hero-inner) */
}
.hero-carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* contain: cada imagem cabe inteira na caixa, apesar de proporções
     diferentes (colheitadeira deitada, peneiras em pé). */
  object-fit: contain;
  object-position: center;
  transform-origin: center;
  /* Estado escondido: encolhida a zero e apagada.
     Ao SAIR (perder .is-active) usa ease-in — parece ser "sugada". */
  transform: scale(0);
  opacity: 0;
  transition: transform .55s ease-in, opacity .45s ease-in;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .55));
}
.hero-carousel-img.is-active {
  /* Estado visível: tamanho cheio. Ao ENTRAR usa uma curva com leve
     overshoot — cresce e dá um "pop" ao chegar. */
  transform: scale(1);
  opacity: 1;
  transition: transform .6s cubic-bezier(.34, 1.56, .64, 1), opacity .4s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-img { transition: none; }
}

/* No mobile o texto ocupa a largura toda; o carrossel sairia por cima.
   A foto de fundo do hero já mostra a peneira ali, então ocultamos. */
@media (max-width: 900px) {
  .hero-carousel { display: none; }
}

/* ---------- problema ---------- */
.problema { padding-bottom: clamp(90px, 10vw, 120px); }

.h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4.5vw, 46px);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 18px;
}
.h2-dark { color: var(--ink); }
.h2-sm { font-size: clamp(24px, 3.5vw, 34px); line-height: 1.25; margin: 0; }
.h2-lg { font-size: clamp(30px, 5vw, 50px); margin: 0 0 22px; }

.lede {
  color: var(--on-dark-2);
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
  text-align: left;
}
.compare { margin: 0; }
.compare-media {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .1);
}
.compare-media--accent { border-color: var(--orange); }
.compare-label { margin-top: 16px; display: flex; align-items: center; gap: 10px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-muted { background: #666; }
.dot-accent { background: var(--orange); }
.compare-title {
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.compare-desc { color: var(--on-dark-4); font-size: 14px; margin: 6px 0 0; }
.compare-desc.bright { color: rgba(255, 255, 255, .75); }

/* ---------- resultados ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 32px;
  margin-bottom: 56px;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 84px);
  color: var(--orange);
  line-height: 1;
}
.stat-label { font-weight: 700; color: var(--ink); font-size: 15px; margin-top: 4px; }

.bars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 28px;
}
.bar-card { background: var(--white); border-radius: 14px; padding: 32px; }
.bar-card-title { font-weight: 700; color: var(--ink); font-size: 15px; margin-bottom: 18px; }
.bar-rows { display: flex; flex-direction: column; gap: 14px; }
.bar-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(13, 13, 13, .55);
  margin-bottom: 5px;
}
.bar-head.strong { color: var(--ink); font-weight: 700; }
.bar { height: 14px; border-radius: 8px; }
.bar-before { background: var(--bar-muted); }
.bar-after { background: var(--orange); }

/* ---------- tecnologia ---------- */
.section-sub {
  text-align: center;
  color: var(--on-dark-3);
  font-size: 15px;
  margin: 0 0 56px;
  scroll-margin-top: 80px;
}
.section-sub--dark { color: rgba(13, 13, 13, .6); font-size: 14px; margin-bottom: 48px; }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 24px;
}
.tech-card {
  background: var(--ink-soft);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.tech-media { height: 160px; position: relative; }
.tech-body { padding: 24px; }
.tech-num { font-family: var(--display); color: var(--orange); font-size: 26px; margin-bottom: 10px; }
.tech-title { color: var(--white); font-weight: 700; font-size: 16px; margin-bottom: 8px; line-height: 1.3; }
.tech-desc { color: var(--on-dark-3); font-size: 14px; line-height: 1.5; }

/* ---------- calculadora ---------- */
.calc {
  background: var(--cream);
  border-radius: 20px;
  padding: clamp(28px, 5vw, 48px);
  text-align: left;
}
.calc-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 28px;
  margin-bottom: 36px;
}
.calc-head {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 10px;
}

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: #ddc9ae;
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}
input[type=range]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 3px solid var(--white);
}

.calc-result {
  background: var(--ink);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 36px);
  text-align: center;
}
.calc-result-label {
  color: var(--on-dark-3);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.calc-result-num {
  font-family: var(--display);
  color: var(--orange);
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1;
}
.calc-result-sub { color: var(--on-dark-5); font-size: 14px; margin-top: 6px; }

/* Detalhamento: mostra de onde vem cada parte do total. */
.calc-breakdown {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.calc-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.calc-line-label {
  color: var(--on-dark-3);
  font-size: 13px;
  line-height: 1.35;
}
.calc-line-value {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
/* A colheita total é contexto, não ganho — fica um degrau abaixo na hierarquia. */
.calc-line--muted { padding-top: 10px; border-top: 1px dashed var(--hairline); }
.calc-line--muted .calc-line-label,
.calc-line--muted .calc-line-value {
  color: var(--on-dark-5);
  font-weight: 400;
  font-size: 13px;
}

.calc-note { color: rgba(13, 13, 13, .5); font-size: 12px; margin: 20px 0 0; line-height: 1.5; }

/* ---------- quadros de economia (folder) ----------
   Cartões laranja sólidos, replicando o folder impresso: o produtor que tem o
   material na mão reconhece os mesmos números na tela. É a única parte da
   página onde o laranja é fundo e não pontuação — a seção não tem CTA próprio,
   então não há nada com que competir. */
.folder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
  text-align: left;
}
.folder-card {
  background: var(--orange);
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
}
.folder-card-title {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.15;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 20px;
  /* Reserva 2 linhas para que títulos de 1 e de 2 linhas ocupem a mesma
     altura — sem isso, a caixa e o preço de cada card começam num Y diferente. */
  min-height: 2.3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.folder-panel {
  background: var(--white);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
  /* Cresce para preencher o card. Como os cards têm altura igual (grid) e os
     títulos foram equalizados, as caixas ficam do mesmo tamanho e o bloco de
     preço abaixo delas alinha entre os três cards. Conteúdo centralizado
     na vertical para as caixas mais vazias não ficarem com folga só embaixo. */
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.folder-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
}
.folder-row + .folder-row { border-top: 1px solid rgba(13, 13, 13, .1); }
.folder-row-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.folder-row-value { font-size: 13px; font-weight: 800; color: var(--ink); }
.folder-row-unit { font-size: 11px; color: var(--orange); font-weight: 600; }

.folder-calc {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ink);
  text-align: center;
  margin: 0;
  padding: 7px 0;
}
.folder-calc + .folder-calc { border-top: 1px solid rgba(13, 13, 13, .1); }
.folder-calc strong { color: var(--orange); }

.folder-recupera {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: center;
}
.folder-value {
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 38px);
  color: var(--white);
  line-height: 1.05;
  text-align: center;
  margin-top: 6px;
}
.folder-value-sub {
  font-family: var(--display);
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}
.folder-foot {
  color: rgba(255, 255, 255, .8);
  font-size: 11.5px;
  line-height: 1.4;
  /* O flex:1 do painel já empurra o rodapé para baixo; não precisa de auto. */
  margin: 0;
  padding-top: 18px;
}
.folder-note {
  color: var(--on-dark-5);
  font-size: 12px;
  line-height: 1.5;
  margin: 28px 0 0;
  text-align: left;
}

/* ---------- vantagens ---------- */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 56px;
  align-items: center;
}
.adv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.adv-item { display: flex; gap: 14px; align-items: flex-start; }
.adv-check {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}
.adv-text { color: var(--ink); font-size: 16px; font-weight: 500; line-height: 1.4; padding-top: 2px; }

.crops { background: var(--white); border-radius: 16px; padding: 36px; text-align: center; }
.crops-title {
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 22px;
}
.crops-row { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.crop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.crop-icon { font-size: 34px; }

/* ---------- compatibilidade ---------- */
.compat {
  background: var(--ink);
  padding: clamp(56px, 8vw, 80px) var(--pad-x);
  text-align: center;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.eyebrow {
  color: var(--orange);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

/* ---------- depoimentos ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; }
.testimonial-quote { color: var(--ink); font-size: 15px; line-height: 1.55; margin: 0; flex: 1; }
.testimonial-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(13, 13, 13, .08);
}
.avatar {
  flex: none; /* impede o flex de espremer o círculo quando o texto ao lado é longo */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--orange);
  font-family: var(--display);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.testimonial-name { font-weight: 700; color: var(--ink); font-size: 14px; }
.testimonial-loc { color: rgba(13, 13, 13, .5); font-size: 13px; }

/* ---------- faq ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--ink-soft);
  border-radius: 12px;
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.faq-q-text { color: var(--white); font-weight: 700; font-size: 15px; padding-right: 16px; }
.faq-icon { color: var(--orange); font-size: 20px; flex: none; }
.faq-a {
  padding: 0 22px 22px;
  color: var(--on-dark-2);
  font-size: 14px;
  line-height: 1.6;
}
.faq-a[hidden] { display: none; }

/* ---------- cta final ---------- */
.cta-final {
  background: var(--ink);
  padding: clamp(80px, 10vw, 130px) var(--pad-x);
  text-align: center;
  border-top: 1px solid var(--hairline);
}
.cta-sub { color: var(--on-dark-2); font-size: 16px; margin: 0 0 36px; }
.trust-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 44px;
}
.trust {
  color: var(--on-dark-4);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- footer ---------- */
.site-footer { background: var(--ink-deep); padding: 48px var(--pad-x) 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
}
.footer-logo {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}
.footer-blurb { color: var(--on-dark-5); font-size: 13px; line-height: 1.6; max-width: 260px; }
.footer-title {
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--on-dark-2); font-size: 14px; }
.footer-links a:hover { color: var(--orange); }
.copyright { color: rgba(255, 255, 255, .35); font-size: 12px; margin: 20px 0 0; text-align: center; }

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.06); }
