/* ==========================================================================
   AGUIAR AGRONEGÓCIO — Design System
   Paleta extraída da logo: azul-marinho + verde + verde-limão
   Base neutra areia/osso para o ar premium.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Marca */
  --navy-900: #06122c;
  --navy-800: #0a1b3f;
  --navy-700: #102a5c;
  --navy-600: #17306b;
  --navy-500: #21458c;
  --navy-400: #3a63ad;

  --green-800: #0f5c2c;
  --green-700: #14703a;
  --green-600: #1b8c46;
  --green-500: #23a352;

  --lime-500: #8cc63f;
  --lime-400: #a4d65e;
  --lime-300: #c2e58c;

  /* Neutros quentes */
  --sand-50: #fdfbf7;
  --sand-100: #f6f1e7;
  --sand-200: #ece4d5;
  --sand-300: #ddd2bd;

  --ink: #0f1726;
  --ink-soft: #33405a;
  /* Cinzas verificados: AA (>=4.5:1) sobre branco e sobre areia-100.
     --muted-light é só para ícones decorativos (>=3:1, contraste não-textual). */
  --muted: #5c6980;
  --muted-light: #78859a;
  --white: #ffffff;

  /* Semânticos */
  --bg: var(--sand-50);
  --bg-alt: var(--sand-100);
  --surface: var(--white);
  --border: rgba(16, 42, 92, 0.12);
  --border-strong: rgba(16, 42, 92, 0.22);
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --text-muted: var(--muted);
  --brand: var(--navy-700);
  --accent: var(--green-600);
  --accent-bright: var(--lime-500);

  /* Tipografia
     Fraunces: serifada variável (eixo óptico 9–144), calorosa e pouco usada.
     Plus Jakarta Sans: grotesca humanista, ótima legibilidade em pt-BR. */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  /* Escala de espaço (density: standard/spacious) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Raios */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Sombras */
  --sh-xs: 0 1px 2px rgba(6, 18, 44, 0.06);
  --sh-sm: 0 2px 8px rgba(6, 18, 44, 0.06), 0 1px 2px rgba(6, 18, 44, 0.04);
  --sh-md: 0 12px 28px -12px rgba(6, 18, 44, 0.18), 0 2px 6px rgba(6, 18, 44, 0.05);
  --sh-lg: 0 28px 60px -24px rgba(6, 18, 44, 0.32), 0 6px 16px rgba(6, 18, 44, 0.07);
  --sh-xl: 0 48px 90px -32px rgba(6, 18, 44, 0.42);

  /* Motion */
  --e-out: cubic-bezier(0.22, 1, 0.36, 1);
  --e-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 150ms;
  --t-base: 250ms;
  --t-slow: 400ms;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --header-h: 78px;
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--brand);
  /* Corte óptico de display: hastes mais finas e contraste maior nos títulos */
  font-variation-settings: "opsz" 144;
  font-optical-sizing: none;
}
h3, h4 { line-height: 1.18; letter-spacing: -0.014em; font-variation-settings: "opsz" 60; }
p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--lime-500);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--lime-300); color: var(--navy-900); }

/* Scrollbar discreta (desktop) */
@media (pointer: fine) {
  * { scrollbar-width: thin; scrollbar-color: var(--sand-300) transparent; }
  *::-webkit-scrollbar { width: 10px; height: 10px; }
  *::-webkit-scrollbar-thumb { background: var(--sand-300); border-radius: 999px; border: 3px solid var(--bg); }
}

/* --------------------------------------------------------------------------
   3. UTILITÁRIOS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 860px; }

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

.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 999;
  background: var(--navy-700); color: #fff;
  padding: 12px 20px; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600; transition: top var(--t-base) var(--e-out);
}
.skip-link:focus { top: 0; }

.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--navy-900); color: rgba(255, 255, 255, 0.82); }
.section--dark h2, .section--dark h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 18px;
}
.kicker::before {
  content: ""; width: 28px; height: 2px; flex: none;
  background: linear-gradient(90deg, var(--green-600), var(--lime-500));
  border-radius: 2px;
}
.section-head--center .kicker::after {
  content: ""; width: 28px; height: 2px; flex: none;
  background: linear-gradient(90deg, var(--lime-500), var(--green-600));
  border-radius: 2px;
}
.section--dark .kicker { color: var(--lime-400); }

.h1 { font-size: clamp(2.5rem, 6.2vw, 4.25rem); }
.h2 { font-size: clamp(1.95rem, 4.2vw, 3rem); }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.65rem); }

.lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  color: var(--text-soft);
  line-height: 1.7;
  margin-top: 20px;
}
.section--dark .lead { color: rgba(255, 255, 255, 0.72); }

.text-accent { color: var(--green-600); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }

/* --------------------------------------------------------------------------
   4. BOTÕES
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--navy-700);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform var(--t-base) var(--e-out),
              box-shadow var(--t-base) var(--e-out),
              background-color var(--t-base) var(--e-out),
              color var(--t-base) var(--e-out),
              border-color var(--t-base) var(--e-out);
  will-change: transform;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px) scale(0.985); transition-duration: 90ms; }

.btn--primary {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
  box-shadow: 0 10px 24px -10px rgba(20, 112, 58, 0.7);
  overflow: hidden;
}
.btn--primary:hover { box-shadow: 0 18px 34px -12px rgba(20, 112, 58, 0.75); }
/* Brilho discreto que atravessa o botão no hover — 14% de alfa, quase um reflexo */
.btn--primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.14) 50%, transparent 66%);
  transform: translateX(-110%);
  transition: transform 820ms var(--e-out);
  pointer-events: none;
}
.btn--primary:hover::after { transform: translateX(110%); }

.btn--dark { background: var(--navy-700); box-shadow: 0 10px 24px -12px rgba(16, 42, 92, 0.7); }
.btn--dark:hover { background: var(--navy-600); }

.btn--outline {
  background: transparent; color: var(--brand);
  border-color: var(--border-strong);
}
.btn--outline:hover { border-color: var(--navy-700); background: rgba(16, 42, 92, 0.04); }

.btn--light {
  background: rgba(255, 255, 255, 0.1); color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}
.btn--light:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.5); }

.btn--sm { min-height: 44px; padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; }

/* Link com seta animada */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; color: var(--green-700);
  padding-block: 12px; /* garante alvo de toque >= 44px de altura */
  transition: gap var(--t-base) var(--e-out), color var(--t-base) var(--e-out);
}
.link-arrow svg { transition: transform var(--t-base) var(--e-out); }
.link-arrow:hover { gap: 12px; color: var(--green-800); }
.link-arrow:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   5. HEADER / NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background-color var(--t-slow) var(--e-out),
              box-shadow var(--t-slow) var(--e-out),
              height var(--t-slow) var(--e-out),
              border-color var(--t-slow) var(--e-out);
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(253, 251, 247, 0.86);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  opacity: 0;
  transition: opacity var(--t-slow) var(--e-out);
  pointer-events: none;
}
.site-header.is-stuck { --header-h: 68px; border-bottom-color: var(--border); box-shadow: var(--sh-sm); }
.site-header.is-stuck::before { opacity: 1; }
/* Páginas internas: header sempre sólido */
.site-header--solid::before { opacity: 1; }
.site-header--solid { border-bottom-color: var(--border); }

/* ---- Estado transparente, sobre o hero escuro ----------------------------
   Antes da rolagem o cabeçalho fica por cima da foto. Sem isto, os links
   ficariam azul-marinho sobre fundo escuro — praticamente invisíveis. */
.site-header:not(.is-stuck):not(.site-header--solid)::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 18, 44, 0.72) 0%, rgba(6, 18, 44, 0) 100%);
  transition: opacity var(--t-slow) var(--e-out);
}

.site-header:not(.is-stuck):not(.site-header--solid) .nav-link {
  color: rgba(255, 255, 255, 0.86);
}
.site-header:not(.is-stuck):not(.site-header--solid) .nav-link:hover,
.site-header:not(.is-stuck):not(.site-header--solid) .nav-link[aria-current="page"] {
  color: #fff;
}
.site-header:not(.is-stuck):not(.site-header--solid) .nav-link::after {
  background: linear-gradient(90deg, var(--lime-400), var(--lime-300));
}

/* A logo tem fundo branco, então ganha uma "plaquinha" sobre o hero escuro */
.site-header:not(.is-stuck):not(.site-header--solid) .brand {
  background: #fff;
  padding: 5px 13px;
  border-radius: 11px;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.35);
}
.site-header:not(.is-stuck):not(.site-header--solid) .brand img {
  mix-blend-mode: normal;
}

.site-header:not(.is-stuck):not(.site-header--solid) .nav-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}
.site-header:not(.is-stuck):not(.site-header--solid) .nav-toggle span,
.site-header:not(.is-stuck):not(.site-header--solid) .nav-toggle span::before,
.site-header:not(.is-stuck):not(.site-header--solid) .nav-toggle span::after {
  background: #fff;
}
.site-header:not(.is-stuck):not(.site-header--solid) .nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

/* Transições suaves entre os dois estados */
.brand, .nav-toggle { transition: background-color var(--t-slow) var(--e-out),
                                  border-color var(--t-slow) var(--e-out),
                                  padding var(--t-slow) var(--e-out),
                                  box-shadow var(--t-slow) var(--e-out); }

.header-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; gap: var(--space-6);
}

.brand { display: flex; align-items: center; min-height: 44px; flex: none; margin-right: auto; }
.brand img {
  height: 40px; width: auto;
  transition: height var(--t-slow) var(--e-out);
  mix-blend-mode: multiply;
}
.is-stuck .brand img { height: 34px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  padding: 10px 14px;
  font-size: 15px; font-weight: 500;
  color: var(--text-soft);
  border-radius: var(--r-sm);
  transition: color var(--t-base) var(--e-out);
}
.nav-link::after {
  content: ""; position: absolute;
  left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: linear-gradient(90deg, var(--green-600), var(--lime-500));
  border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base) var(--e-out);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--brand); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }

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

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  flex: none;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--brand); position: relative;
  transition: background-color var(--t-fast) linear;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  border-radius: 2px; background: var(--brand);
  transition: transform var(--t-base) var(--e-out), top var(--t-base) var(--e-out);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Drawer mobile */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--sand-50);
  padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--t-slow) var(--e-inout), visibility var(--t-slow);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 500; color: var(--brand);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  opacity: 0; transform: translateY(14px);
  transition: opacity var(--t-slow) var(--e-out), transform var(--t-slow) var(--e-out);
}
.mobile-nav.is-open a { opacity: 1; transform: translateY(0); }
.mobile-nav.is-open a:nth-child(1) { transition-delay: 90ms; }
.mobile-nav.is-open a:nth-child(2) { transition-delay: 140ms; }
.mobile-nav.is-open a:nth-child(3) { transition-delay: 190ms; }
.mobile-nav.is-open a:nth-child(4) { transition-delay: 240ms; }
.mobile-nav.is-open a:nth-child(5) { transition-delay: 290ms; }
.mobile-nav.is-open a:nth-child(6) { transition-delay: 340ms; }
.mobile-nav .btn { margin-top: 24px; opacity: 0; transform: translateY(14px); transition: opacity var(--t-slow) var(--e-out) 390ms, transform var(--t-slow) var(--e-out) 390ms; }
.mobile-nav.is-open .btn { opacity: 1; transform: translateY(0); }

body.nav-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(48px, 6.5vw, 84px));
  padding-bottom: clamp(64px, 8vw, 108px);
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* --- Foto de fundo (gado + proprietário), ancorada à direita --- */
.hero-photo {
  position: absolute; z-index: -3;
  inset: 0 0 0 auto;
  width: 62%;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  /* leve zoom lento: dá vida sem custar performance */
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

/* --- Véu de gradiente: sólido à esquerda, transparente sobre o rosto --- */
.hero-scrim {
  position: absolute; inset: 0; z-index: -2;
  pointer-events: none;
  background:
    /* horizontal: cobre a coluna de texto, abre sobre a foto */
    linear-gradient(90deg,
      #06122c 0%,
      #06122c 30%,
      rgba(6, 18, 44, 0.93) 46%,
      rgba(6, 18, 44, 0.62) 60%,
      rgba(6, 18, 44, 0.26) 78%,
      rgba(6, 18, 44, 0.12) 100%),
    /* vertical: assenta o topo sob o cabeçalho e escurece a base */
    linear-gradient(180deg,
      rgba(6, 18, 44, 0.66) 0%,
      rgba(6, 18, 44, 0) 26%,
      rgba(6, 18, 44, 0) 62%,
      rgba(6, 18, 44, 0.58) 100%);
}

/* Brilho verde da marca, no canto inferior esquerdo */
.hero::before {
  content: ""; position: absolute; z-index: -1;
  width: 60vw; height: 60vw; max-width: 780px; max-height: 780px;
  bottom: -30%; left: -18%;
  background: radial-gradient(circle, rgba(35, 163, 82, 0.28) 0%, rgba(35, 163, 82, 0) 68%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatGlow 16s ease-in-out infinite alternate;
}
/* Malha fina só na área do texto */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 55% 70% at 18% 45%, #000 0%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 55% 70% at 18% 45%, #000 0%, transparent 76%);
}
@keyframes floatGlow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(4%, -6%, 0) scale(1.12); }
}

.hero-inner { max-width: min(620px, 100%); }
/* Sobre a foto, o título fica um pouco menor para caber em 3 linhas */
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); }

/* --- Placa de identificação sobre a foto --- */
.hero-plate {
  position: absolute; z-index: 2;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(24px, 4vw, 48px);
  display: flex; flex-direction: column;
  padding: 16px 22px;
  border-radius: var(--r-md);
  background: rgba(6, 18, 44, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: var(--sh-lg);
  text-align: right;
  max-width: min(300px, 62vw);
}
.hero-plate .plate-name {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700; color: #fff; line-height: 1.2;
}
.hero-plate .plate-role {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lime-400);
  margin-top: 6px; line-height: 1.4;
}
.hero-plate .plate-creci {
  display: inline-flex; align-items: center; justify-content: flex-end; gap: 7px;
  margin-top: 12px; padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px; font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
.hero-plate .plate-creci svg { color: var(--lime-400); flex: none; }

.hero h1 { color: #fff; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--lime-400), var(--green-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero .lead { color: rgba(255, 255, 255, 0.76); max-width: 52ch; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: var(--lime-400);
  box-shadow: 0 0 0 0 rgba(140, 198, 63, 0.7);
  animation: pulseDot 2.4s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(140, 198, 63, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(140, 198, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(140, 198, 63, 0); }
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 36px;
}

.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 26px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px; color: rgba(255, 255, 255, 0.62);
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--lime-400); flex: none; }

/* --------------------------------------------------------------------------
   7. BARRA DE NÚMEROS
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.stat {
  background: var(--surface);
  padding: clamp(24px, 3.4vw, 38px) clamp(16px, 2.4vw, 28px);
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--brand);
  line-height: 1; letter-spacing: -0.02em;
  display: block;
  /* Algarismos de largura fixa: sem isso o número treme enquanto conta */
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-variant-numeric: tabular-nums lining-nums;
}
.stat .num .suffix { color: var(--green-600); }
.stat .label {
  margin-top: 12px;
  font-size: 13.5px; color: var(--muted);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   8. CARDS DE SERVIÇO
   -------------------------------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 40px); }

.svc {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  overflow: hidden;
  transition: transform var(--t-slow) var(--e-out), box-shadow var(--t-slow) var(--e-out), border-color var(--t-slow) var(--e-out);
  will-change: transform;
}
.svc::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--lime-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-slow) var(--e-out);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.svc:hover::before { transform: scaleX(1); }

.svc .icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(27, 140, 70, 0.12), rgba(140, 198, 63, 0.14));
  color: var(--green-700);
  margin-bottom: 24px;
  transition: transform var(--t-slow) var(--e-out);
}
.svc:hover .icon { transform: scale(1.06) rotate(-3deg); }
.svc h3 { margin-bottom: 12px; }
.svc p { color: var(--text-muted); font-size: 15.5px; }
.svc ul { margin-top: 20px; display: grid; gap: 10px; }
.svc ul li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--text-soft);
}
.svc ul li svg { flex: none; margin-top: 4px; color: var(--green-600); }
.svc .link-arrow { margin-top: 24px; }

/* --------------------------------------------------------------------------
   7b. CABEÇALHO EDITORIAL DE SEÇÃO
   Filete fino + numeral de índice, como um caderno de campo.
   É o que dá a direção do site: editorial, assimétrico, sem centralizar tudo.
   -------------------------------------------------------------------------- */
.ed-head {
  display: grid;
  grid-template-columns: minmax(60px, 92px) minmax(0, 1fr);
  gap: 0 clamp(18px, 3vw, 44px);
  padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid var(--border-strong);
  margin-bottom: clamp(36px, 5vw, 68px);
}
.ed-index {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green-700); /* 5,9:1 sobre areia — o verde-600 dava só 3,8:1 */
  font-feature-settings: "tnum" 1;
}
.ed-head-body { max-width: 760px; }
.ed-head-body .kicker { margin-bottom: 14px; }
.ed-head-body .lead { margin-top: 18px; }

.section--dark .ed-head { border-top-color: rgba(255, 255, 255, 0.2); }
.section--dark .ed-index { color: var(--lime-400); }

/* Variante com ação à direita (ex.: setas do carrossel) */
.ed-head--split .ed-head-body {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 24px;
  max-width: none;
}
.ed-head--split .ed-head-text { max-width: 640px; }

@media (max-width: 700px) {
  .ed-head { grid-template-columns: 1fr; gap: 14px; }
  .ed-index { font-size: 1.1rem; }
}

/* --------------------------------------------------------------------------
   7c. PROCESSO — coluna fixa + lista editorial
   -------------------------------------------------------------------------- */
.processo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.processo-sticky { position: sticky; top: calc(var(--header-h) + 48px); }
.processo-sticky .ed-head { margin-bottom: 28px; }

.steps-list { display: grid; }
.step-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0 clamp(18px, 2.6vw, 34px);
  padding: clamp(24px, 3.2vw, 38px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.step-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.step-row .n {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600; line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--lime-400);
  min-width: 2.2ch;
  transition: color var(--t-slow) var(--e-out), transform var(--t-slow) var(--e-out);
}
.step-row:hover .n { transform: translateX(3px); color: var(--lime-300); }
.step-row h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); color: #fff; margin-bottom: 10px; }
.step-row p { color: rgba(255, 255, 255, 0.7); font-size: 15.5px; max-width: 52ch; }

@media (max-width: 900px) {
  .processo-grid { grid-template-columns: 1fr; gap: 8px; }
  .processo-sticky { position: static; }
}

/* --------------------------------------------------------------------------
   7d. PARÁGRAFO QUE ACENDE CONFORME A ROLAGEM
   -------------------------------------------------------------------------- */
/* O efeito acende por COR, não por opacidade.
   Texto a 22% de opacidade dá 1,46:1 de contraste — ilegível, reprova em AA.
   Assim os dois estados passam: apagado 5,4:1 e aceso 13,5:1. */
[data-scroll-text] .w {
  color: var(--muted);
  transition: color 550ms var(--e-out);
}
[data-scroll-text] .w.is-lit { color: var(--brand); }

/* --------------------------------------------------------------------------
   8b. CARTÕES DE ESCOLHA (roteamento direto para o WhatsApp)
   -------------------------------------------------------------------------- */
.choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.2vw, 24px);
}

.choice {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.8vw, 34px);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-slow) var(--e-out),
              box-shadow var(--t-slow) var(--e-out),
              border-color var(--t-slow) var(--e-out);
  will-change: transform;
}
.choice::before {
  content: ""; position: absolute; z-index: -1; inset: 0;
  background: linear-gradient(135deg, rgba(27, 140, 70, 0.07), rgba(140, 198, 63, 0.05));
  opacity: 0;
  transition: opacity var(--t-slow) var(--e-out);
}
.choice::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--lime-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-slow) var(--e-out);
}
.choice:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.choice:hover::before { opacity: 1; }
.choice:hover::after { transform: scaleX(1); }

.choice .icon {
  width: 56px; height: 56px; flex: none;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(27, 140, 70, 0.13), rgba(140, 198, 63, 0.16));
  color: var(--green-700);
  transition: transform var(--t-slow) var(--e-out), background-color var(--t-slow) var(--e-out), color var(--t-slow) var(--e-out);
}
.choice:hover .icon {
  transform: scale(1.06) rotate(-3deg);
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: #fff;
}

.choice-body { flex: 1; min-width: 0; }
.choice-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.9vw, 1.35rem);
  font-weight: 600; color: var(--brand); line-height: 1.28;
}
.choice-sub {
  margin-top: 8px;
  font-size: 14.5px; color: var(--text-muted); line-height: 1.55;
}
.choice-go {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  font-size: 14px; font-weight: 600; color: var(--green-700);
  transition: gap var(--t-base) var(--e-out);
}
.choice:hover .choice-go { gap: 12px; }
.choice-go svg { flex: none; }

@media (max-width: 780px) {
  .choices { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .choice { flex-direction: column; gap: 16px; }
  .choice .icon { width: 50px; height: 50px; }
}

/* --------------------------------------------------------------------------
   9. SPLIT (SOBRE)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split--reverse .split-media { order: 2; }

.split-media { position: relative; }
.split-media .frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
  background: var(--navy-800);
}
.split-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.split-media .deco {
  position: absolute; inset: auto -20px -20px auto;
  width: 58%; height: 42%;
  border: 2px solid var(--lime-500);
  border-radius: var(--r-xl);
  z-index: -1;
  opacity: 0.55;
}

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-full);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13.5px; font-weight: 500; color: var(--text-soft);
  box-shadow: var(--sh-xs);
}
.pill svg { color: var(--green-600); flex: none; }

.quote-block {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 3px solid var(--lime-500);
  background: linear-gradient(90deg, rgba(140, 198, 63, 0.08), transparent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.quote-block p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--brand); line-height: 1.5;
}
.quote-block cite {
  display: block; margin-top: 14px;
  font-style: normal; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-700);
}

/* --------------------------------------------------------------------------
   10. CARDS DE CATÁLOGO (gado / fazendas)
   -------------------------------------------------------------------------- */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(20px, 2.6vw, 30px);
}

.card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-slow) var(--e-out), box-shadow var(--t-slow) var(--e-out);
  will-change: transform;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

.media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(150deg, var(--navy-700) 0%, var(--navy-900) 55%, var(--green-800) 130%);
  display: grid; place-items: center;
}
/* Placeholder da marca — aparece se a imagem externa não carregar */
.media::before {
  content: attr(data-ph);
  position: absolute; inset: auto 20px 22px 20px;
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.3;
}
.media::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 35%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000, transparent 72%);
}
.media img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--e-out);
}
.card:hover .media img { transform: scale(1.06); }

.badge {
  position: absolute; z-index: 2; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  box-shadow: var(--sh-sm);
}
.badge--accent { background: var(--lime-500); color: var(--navy-900); }
.badge--green { background: var(--green-600); color: #fff; }
.badge--right { left: auto; right: 14px; }

.card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card-loc {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600; color: var(--brand);
  line-height: 1.25;
}
.card-desc { margin-top: 10px; font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

.specs {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.spec { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--text-soft); }
.spec svg { color: var(--muted-light); flex: none; }
.spec b { font-weight: 600; color: var(--brand); }

.card-foot {
  margin-top: auto; padding-top: 20px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
}
.price { line-height: 1.2; }
.price .amount {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700; color: var(--brand);
  display: block;
}
.price .unit { font-size: 12px; color: var(--muted); }

/* --------------------------------------------------------------------------
   11. FILTROS DE CATÁLOGO
   -------------------------------------------------------------------------- */
.filters {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--sh-sm);
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 14px;
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted);
  transition: color 320ms var(--e-out), letter-spacing 320ms var(--e-out);
  width: fit-content;
}
/* O rótulo abre o espacejamento e vira verde quando o campo recebe foco */
.field:focus-within label { color: var(--green-700); letter-spacing: 0.14em; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-strong);
  background: var(--sand-50);
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--t-base) var(--e-out), box-shadow var(--t-base) var(--e-out), background-color var(--t-base) var(--e-out);
  appearance: none;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b788f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(27, 140, 70, 0.14);
}
.field .hint { font-size: 12.5px; color: var(--muted); }
.field .error {
  font-size: 12.5px; color: #c02626; font-weight: 500;
  display: none; align-items: center; gap: 6px;
}
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #c02626; background: #fff7f7; }
.field.is-invalid .error { display: flex; }

.results-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px; margin-bottom: 22px;
}
.results-count { font-size: 14.5px; color: var(--muted); }
.results-count b { color: var(--brand); font-weight: 700; }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: clamp(48px, 8vw, 90px) 24px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-lg);
  background: var(--surface);
}
.empty-state svg { color: var(--muted-light); margin: 0 auto 18px; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--muted); }

/* --------------------------------------------------------------------------
   12. PAGE HEADER (páginas internas)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(48px, 6vw, 80px));
  padding-bottom: clamp(40px, 5vw, 64px);
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 85% 10%, rgba(35, 163, 82, 0.3), transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.25rem); }
.page-hero .lead { color: rgba(255, 255, 255, 0.74); max-width: 62ch; }

.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 13.5px; color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.breadcrumb a { display: inline-flex; align-items: center; min-height: 44px; transition: color var(--t-base) var(--e-out); }
.breadcrumb a:hover { color: var(--lime-400); }
.breadcrumb svg { opacity: 0.5; }
.breadcrumb [aria-current] { color: rgba(255, 255, 255, 0.95); font-weight: 500; }

/* --------------------------------------------------------------------------
   13. PROCESSO / TIMELINE
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   14. DEPOIMENTOS
   -------------------------------------------------------------------------- */
.testi-track {
  display: flex; gap: clamp(18px, 2.4vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }

.testi-track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.testi-track.is-dragging .testi { cursor: grabbing; }

.testi {
  position: relative;
  flex: 0 0 min(420px, 84vw);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(30px, 3.2vw, 40px) clamp(26px, 3vw, 36px) clamp(26px, 3vw, 34px);
  display: flex; flex-direction: column;
  transition: box-shadow var(--t-slow) var(--e-out),
              transform var(--t-slow) var(--e-out),
              border-color var(--t-slow) var(--e-out);
}
.testi:hover { box-shadow: var(--sh-md); transform: translateY(-4px); border-color: rgba(27, 140, 70, 0.32); }

/* Aspas penduradas fora da coluna de texto — detalhe tipográfico clássico */
.testi::before {
  content: "“";
  position: absolute;
  top: clamp(6px, 1.4vw, 14px); left: clamp(14px, 1.8vw, 20px);
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-size: clamp(3.4rem, 5vw, 4.6rem);
  line-height: 1;
  color: var(--lime-500);
  opacity: 0.28;
  pointer-events: none;
  transition: opacity var(--t-slow) var(--e-out), transform var(--t-slow) var(--e-out);
}
.testi:hover::before { opacity: 0.5; transform: translateY(-2px); }

.testi .stars { display: flex; gap: 3px; color: var(--lime-500); margin-bottom: 18px; }
.testi .stars svg { transition: transform 420ms var(--e-out); }
.testi:hover .stars svg:nth-child(1) { transform: translateY(-2px); transition-delay: 0ms; }
.testi:hover .stars svg:nth-child(2) { transform: translateY(-2px); transition-delay: 45ms; }
.testi:hover .stars svg:nth-child(3) { transform: translateY(-2px); transition-delay: 90ms; }
.testi:hover .stars svg:nth-child(4) { transform: translateY(-2px); transition-delay: 135ms; }
.testi:hover .stars svg:nth-child(5) { transform: translateY(-2px); transition-delay: 180ms; }

.testi blockquote {
  margin: 0; flex: 1;
  font-size: 16px; line-height: 1.72; color: var(--text-soft);
}
.testi footer { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 14px; }
.testi .avatar { transition: transform var(--t-slow) var(--e-out); }
.testi:hover .avatar { transform: scale(1.06) rotate(-3deg); }

/* ---- Contador + trilho de progresso ---- */
.testi-meter {
  display: flex; align-items: center; gap: 18px;
  margin-top: clamp(24px, 3vw, 34px);
}
.testi-rail {
  position: relative;
  flex: 1; height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.testi-rail span {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--green-600), var(--lime-500));
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(var(--p, 0.25));
  transition: transform 260ms var(--e-out);
}
.testi-count {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 30;
  font-size: 0.9rem; font-weight: 600;
  font-feature-settings: "tnum" 1;
  color: var(--muted);
  white-space: nowrap;
}
.testi-count b { color: var(--brand); font-weight: 600; }
.avatar {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  color: #fff; font-weight: 700; font-size: 15px;
  letter-spacing: 0.03em;
}
.testi .who { font-weight: 600; color: var(--brand); font-size: 15px; line-height: 1.3; }
.testi .where { font-size: 13px; color: var(--muted); margin-top: 2px; }

.slider-nav { display: flex; gap: 10px; }
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  display: grid; place-items: center;
  color: var(--brand);
  transition: background-color var(--t-base) var(--e-out), color var(--t-base) var(--e-out), border-color var(--t-base) var(--e-out), transform var(--t-base) var(--e-out);
}
.slider-btn svg { transition: transform 380ms var(--e-out); }
.slider-btn:hover { background: var(--navy-700); color: #fff; border-color: transparent; transform: translateY(-2px); }
#testi-prev:hover:not(:disabled) svg { transform: translateX(-3px); }
#testi-next:hover:not(:disabled) svg { transform: translateX(3px); }
.slider-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; background: var(--surface); color: var(--brand); border-color: var(--border); }

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
/* Linhas com filete em vez de caixas: menos cromo, mais editorial. */
.faq { display: grid; border-top: 1px solid var(--border); }

.faq-item {
  position: relative;
  border-bottom: 1px solid var(--border);
}
/* Filete verde que "desenha" da esquerda quando a resposta abre */
.faq-item::before {
  content: ""; position: absolute; z-index: 1;
  left: 0; top: -1px; height: 1px; width: 100%;
  background: linear-gradient(90deg, var(--green-600), var(--lime-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform 620ms var(--e-out);
}
.faq-item.is-open::before { transform: scaleX(1); }

.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(38px, 52px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: clamp(20px, 2.6vw, 28px) 0;
  text-align: left;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 60;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem); font-weight: 600;
  color: var(--brand);
  min-height: 56px;
}
/* O texto da pergunta desliza levemente ao passar o mouse */
.faq-q > span:nth-child(2) {
  transition: transform var(--t-slow) var(--e-out);
}
.faq-q:hover > span:nth-child(2) { transform: translateX(4px); }

.faq-n {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 30;
  font-size: 0.92rem; font-weight: 600;
  font-feature-settings: "tnum" 1;
  color: var(--muted);
  transition: color var(--t-slow) var(--e-out);
}
.faq-q:hover .faq-n { color: var(--green-700); }
.faq-item.is-open .faq-n { color: var(--green-700); }

/* Sinal de + que gira e vira − ao abrir */
.faq-sign {
  position: relative; flex: none;
  width: 18px; height: 18px;
  color: var(--brand);
  transition: color var(--t-slow) var(--e-out), transform var(--t-slow) var(--e-out);
}
.faq-sign::before, .faq-sign::after {
  content: ""; position: absolute;
  background: currentColor; border-radius: 1px;
  transition: transform 500ms var(--e-out);
}
.faq-sign::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-sign::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item.is-open .faq-sign { color: var(--green-700); }
.faq-item.is-open .faq-sign::after { transform: rotate(90deg); }
.faq-q:hover .faq-sign { transform: rotate(90deg); }
.faq-item.is-open .faq-q:hover .faq-sign { transform: rotate(0deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-slow) var(--e-inout);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 40px clamp(22px, 2.6vw, 30px) clamp(50px, 6vw, 80px);
  color: var(--text-muted);
  font-size: 15.5px;
  max-width: 68ch;
  /* o parágrafo sobe um pouco enquanto a linha abre */
  transform: translateY(-6px);
  opacity: 0;
  transition: transform 520ms var(--e-out) 90ms, opacity 420ms var(--e-out) 90ms;
}
.faq-item.is-open .faq-a p { transform: translateY(0); opacity: 1; }

@media (max-width: 560px) {
  .faq-a p { padding-left: 0; padding-right: 0; }
}

/* --------------------------------------------------------------------------
   16. CTA / CONTATO
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-700) 55%, var(--green-800) 165%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(36px, 5.5vw, 68px);
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: ""; position: absolute; z-index: -1;
  width: 520px; height: 520px; right: -120px; top: -180px;
  background: radial-gradient(circle, rgba(140, 198, 63, 0.26), transparent 68%);
  border-radius: 50%;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.76); }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: clamp(24px, 4vw, 48px); }
.cta-inner > div:first-child { flex: 1 1 440px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(32px, 5vw, 64px); align-items: start; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 40px);
  box-shadow: var(--sh-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .field + .field, .form-card .form-row + .field, .form-card .field + .form-row { margin-top: 18px; }
.form-note { margin-top: 16px; font-size: 12.5px; color: var(--muted); text-align: center; }

.form-status {
  margin-top: 16px; padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 500;
  display: none; align-items: flex-start; gap: 10px;
}
.form-status.is-visible { display: flex; }
.form-status--ok { background: rgba(27, 140, 70, 0.1); color: var(--green-800); border: 1px solid rgba(27, 140, 70, 0.28); }
.form-status--err { background: #fdeaea; color: #9d1c1c; border: 1px solid rgba(192, 38, 38, 0.28); }
.form-status svg { flex: none; margin-top: 2px; }

.contact-list { display: grid; gap: 4px; }
.contact-item {
  position: relative;
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
/* Filete verde que corre por baixo da linha inteira no hover */
a.contact-item::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, var(--green-600), var(--lime-500));
  transform: scaleX(0); transform-origin: right;
  transition: transform 520ms var(--e-out);
}
a.contact-item:hover::after { transform: scaleX(1); transform-origin: left; }
a.contact-item .icon { transition: transform var(--t-slow) var(--e-out), background var(--t-slow) var(--e-out), color var(--t-slow) var(--e-out); }
a.contact-item:hover .icon {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: #fff;
}
.contact-item .icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(27, 140, 70, 0.12), rgba(140, 198, 63, 0.16));
  color: var(--green-700);
}
.contact-item .k {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted);
}
.contact-item .v {
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 600;
  color: var(--brand); margin-top: 4px; line-height: 1.35;
  transition: color var(--t-base) var(--e-out);
}
a.contact-item:hover .v { color: var(--green-700); }

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.62);
  padding-block: clamp(48px, 6vw, 80px) 0;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(36px, 5vw, 56px);
}
.footer-brand .wordmark { margin-bottom: 18px; }
.footer-brand p { max-width: 34ch; line-height: 1.7; }

.wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.wordmark .w1 {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 700;
  letter-spacing: 0.06em; color: #fff;
}
.wordmark .w2 {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--lime-400); margin-top: 5px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; margin-bottom: 18px;
}
.footer-col li + li { margin-top: 2px; }
.footer-col li > span { display: inline-block; padding-block: 9px; }
/* Filete que se desenha da esquerda no hover, em vez de empurrar o texto */
.footer-col a {
  position: relative;
  display: inline-flex; align-items: center;
  min-height: 44px; /* alvo de toque */
  transition: color var(--t-base) var(--e-out);
}
.footer-col a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 11px; height: 1px;
  background: var(--lime-400);
  transform: scaleX(0); transform-origin: right;
  transition: transform 420ms var(--e-out);
}
.footer-col a:hover { color: var(--lime-400); }
.footer-col a:hover::after { transform: scaleX(1); transform-origin: left; }

.social { display: flex; gap: 10px; margin-top: 20px; }
.social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  transition: background-color var(--t-base) var(--e-out), color var(--t-base) var(--e-out), transform var(--t-base) var(--e-out), border-color var(--t-base) var(--e-out);
}
.social a:hover { background: var(--green-600); color: #fff; transform: translateY(-3px); border-color: transparent; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 26px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px;
  font-size: 13px; color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a:hover { color: var(--lime-400); }

/* --------------------------------------------------------------------------
   18. WHATSAPP FLUTUANTE
   -------------------------------------------------------------------------- */
.fab-wa {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex; align-items: center; gap: 12px;
  height: 60px; padding: 0 22px 0 18px;
  border-radius: var(--r-full);
  background: #25d366;
  color: #062e17;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.65), 0 2px 6px rgba(0, 0, 0, 0.14);
  transform: translateY(120px);
  opacity: 0;
  transition: transform var(--t-slow) var(--e-out), opacity var(--t-slow) var(--e-out), box-shadow var(--t-base) var(--e-out);
}
.fab-wa.is-visible { transform: translateY(0); opacity: 1; }
.fab-wa:hover { box-shadow: 0 20px 44px -10px rgba(37, 211, 102, 0.8); }
.fab-wa svg { flex: none; }
.fab-wa .fab-label { white-space: nowrap; }

/* --------------------------------------------------------------------------
   19. ANIMAÇÕES DE ENTRADA
   -------------------------------------------------------------------------- */
/* IMPORTANTE: as regras que escondem o conteúdo são presas a `html.js`,
   classe adicionada por um script inline no <head>. Se o JavaScript estiver
   desativado ou falhar, nada fica invisível — o site aparece normalmente. */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 700ms var(--e-out), transform 700ms var(--e-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal="left"]  { transform: translate3d(-32px, 0, 0); }
.js [data-reveal="right"] { transform: translate3d(32px, 0, 0); }
.js [data-reveal="scale"] { transform: scale(0.94); }
.js [data-reveal].is-in { opacity: 1; transform: translate3d(0, 0, 0) scale(1); will-change: auto; }

/* Título com revelação por palavra */
.reveal-words .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.js .reveal-words .word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 900ms var(--e-out);
  transition-delay: var(--wd, 0ms);
}
.js .reveal-words.is-in .word > span { transform: translateY(0); }

/* Barra de progresso de leitura */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 101;
  height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--green-600), var(--lime-500));
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   20. RESPONSIVO
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  /* A foto desce para a base do hero, ocupando a largura toda.
     O padding acompanha a altura da foto + folga, para o texto nunca invadi-la. */
  .hero { --hero-foto-h: 420px; padding-bottom: calc(var(--hero-foto-h) + 44px); }
  .hero-photo { inset: auto 0 0 0; width: 100%; height: var(--hero-foto-h); }
  .hero-photo img { object-position: 50% 46%; }
  /* O véu passa a ser ancorado na própria foto, não na altura do hero —
     assim a emenda com o fundo azul fica perfeita em qualquer tela. */
  .hero-photo::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg,
      #06122c 0%,
      rgba(6, 18, 44, 0.74) 20%,
      rgba(6, 18, 44, 0.24) 52%,
      rgba(6, 18, 44, 0.42) 100%);
  }
  .hero-scrim { background: none; }
  .hero::after {
    mask-image: radial-gradient(ellipse 90% 45% at 30% 28%, #000 0%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 90% 45% at 30% 28%, #000 0%, transparent 78%);
  }
  .hero-inner { max-width: 100%; }
  .hero .lead { max-width: 60ch; }
  .hero-plate { left: var(--gutter); right: auto; text-align: left; }
  .hero-plate .plate-creci { justify-content: flex-start; }

  .split { grid-template-columns: 1fr; gap: 44px; }
  .split--reverse .split-media { order: 0; }
  .split-media { max-width: 520px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .filters { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  :root { --header-h: 68px; }
  .hero { --hero-foto-h: 320px; }
  .hero-plate { padding: 13px 17px; bottom: 18px; max-width: calc(100% - var(--gutter) * 2); }
  .hero-plate .plate-name { font-size: 1.05rem; }
  .hero-actions .btn { width: 100%; }
  .filters { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .listing-grid { grid-template-columns: 1fr; }
  .cta-actions .btn { width: 100%; }
  .fab-wa { height: 56px; padding: 0 18px 0 16px; }
  .fab-wa .fab-label { display: none; }
  .fab-wa { padding: 0; width: 56px; justify-content: center; }
  .split-media .deco { display: none; }
}

/* --------------------------------------------------------------------------
   20b. REVISÃO DEDICADA — TELAS PEQUENAS (≤ 620px)
   Não é a versão desktop encolhida. Aqui decidimos o que sai, o que encolhe
   e o que muda de forma. Regra: nada é ocultado sem existir em outro lugar
   alcançável (menu, botão flutuante ou rodapé).
   -------------------------------------------------------------------------- */
@media (max-width: 620px) {

  /* ---- Ritmo geral: seções mais curtas ---------------------------------- */
  .section { padding-block: 52px; }
  .section--tight { padding-block: 40px; }
  .ed-head { margin-bottom: 26px; padding-top: 18px; }
  .lead { margin-top: 14px; font-size: 1rem; line-height: 1.62; }

  /* ---- Cabeçalho editorial: numeral na mesma linha do rótulo ------------ */
  .ed-head {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0 11px;
    align-items: start;
  }
  .ed-index { font-size: 0.92rem; line-height: 1.6; }
  .ed-head-body .kicker { margin-bottom: 9px; }
  .ed-head--split .ed-head-body { gap: 18px; }

  /* ---- Hero: título mais justo ------------------------------------------ */
  .hero h1 { font-size: clamp(2.05rem, 8.6vw, 2.5rem); line-height: 1.06; }
  .hero-badge { margin-bottom: 20px; padding: 7px 14px 7px 9px; font-size: 12.5px; }
  .hero-actions { margin-top: 26px; gap: 10px; }
  .hero-trust { margin-top: 28px; padding-top: 20px; gap: 8px 18px; font-size: 13px; }

  /* ---- Números: 2×2 mais compacto --------------------------------------- */
  .stat { padding: 20px 12px; }
  .stat .num { font-size: 1.85rem; }
  .stat .label { margin-top: 8px; font-size: 12.5px; line-height: 1.35; }

  /* ---- Cartões de escolha: volta a ser linha, ícone menor ---------------- */
  .choice { flex-direction: row; gap: 15px; padding: 20px 18px; align-items: flex-start; }
  .choice .icon { width: 44px; height: 44px; border-radius: 13px; }
  .choice .icon svg { width: 21px; height: 21px; }
  .choice-title { font-size: 1.06rem; }
  .choice-sub { margin-top: 6px; font-size: 13.5px; line-height: 1.5; }
  .choice-go { margin-top: 13px; font-size: 13.5px; }
  .choices { gap: 12px; }

  /* ---- Sobre: foto em 1:1 em vez de 4:5 (economiza ~110px) -------------- */
  .split { gap: 30px; }
  .split-media .frame { aspect-ratio: 1 / 1; }
  .split-media .frame img { object-position: 50% 22%; }
  /* As 4 garantias ocupavam 3 linhas quebradas; em 2 colunas cabem em 2 */
  .pill-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 20px;
  }
  .pill {
    padding: 9px 11px;
    font-size: 12px;
    line-height: 1.3;
    gap: 6px;
    align-items: flex-start;
  }
  .pill svg { margin-top: 1px; }
  .quote-block { margin-top: 24px; padding: 18px 20px; }

  /* ---- Processo: linhas mais justas ------------------------------------- */
  .step-row { padding: 20px 0; gap: 0 14px; }
  .step-row .n { font-size: 1.4rem; }
  .step-row h3 { font-size: 1.08rem; margin-bottom: 7px; }
  .step-row p { font-size: 14.5px; }
  .processo-sticky .btn { width: 100%; margin-top: 4px; }

  /* ---- Depoimentos ------------------------------------------------------ */
  .testi { padding: 26px 22px 22px; }
  .testi blockquote { font-size: 15px; }
  .testi footer { margin-top: 18px; padding-top: 16px; }
  .testi-meter { margin-top: 20px; }
  /* As setas somem: no celular o gesto natural é arrastar, e o trilho
     continua mostrando a posição. */
  .ed-head--split .slider-nav { display: none; }

  /* ---- FAQ -------------------------------------------------------------- */
  .faq-q { padding: 18px 0; gap: 12px; grid-template-columns: 30px minmax(0, 1fr) auto; }
  .faq-a p { padding-bottom: 20px; font-size: 15px; }

  /* ---- CTA final: sem repetir o mesmo destino duas vezes ---------------- */
  .cta-band { padding: 30px 22px; }
  .cta-actions { width: 100%; }

  /* ---- Contato ---------------------------------------------------------- */
  .form-card { padding: 24px 20px; }
  .form-card .field + .field,
  .form-card .form-row + .field,
  .form-card .field + .form-row { margin-top: 14px; }
  .field textarea { min-height: 104px; }
  .contact-item { padding: 15px 0; gap: 14px; }
  .contact-item .icon { width: 40px; height: 40px; border-radius: 11px; }
  .contact-item .icon svg { width: 18px; height: 18px; }
  .contact-item .v { font-size: 1rem; }
  /* Atuação e horário já aparecem no rodapé — aqui viravam repetição */
  .contact-item--extra { display: none; }
  .so-desktop { display: none; }

  /* ---- Rodapé: de 4 blocos empilhados para 2 --------------------------- */
  .site-footer { padding-block: 40px 0; font-size: 14px; }
  .footer-grid { gap: 30px; padding-bottom: 30px; }
  /* "Navegação" é cópia exata do menu do topo, que fica a um toque */
  .footer-col--nav { display: none; }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-col li + li { margin-top: 0; }
  /* min-height fica em 44px: alvo de toque não se negocia por altura de página */
  .footer-col a::after { bottom: 11px; }
  .footer-brand p { max-width: none; }
  .footer-bottom { padding-block: 20px; font-size: 12px; }
  .wordmark .w1 { font-size: 1.45rem; }
  .social { margin-top: 16px; }
}

/* Telas muito estreitas (≤ 380px): último aperto */
@media (max-width: 380px) {
  :root { --gutter: 18px; }
  .hero h1 { font-size: 1.95rem; }
  .stat .num { font-size: 1.65rem; }
  .choice { padding: 18px 15px; gap: 13px; }
  .choice .icon { width: 40px; height: 40px; }
  .testi { flex-basis: 88vw; }
}

/* --------------------------------------------------------------------------
   21. PREFERÊNCIAS DO USUÁRIO
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .reveal-words .word > span { transform: none !important; }
  .fab-wa { opacity: 1; transform: none; }
  .hero-photo img { animation: none; }
  .btn--primary::after { display: none; }
  .faq-a p { opacity: 1 !important; transform: none !important; }
}

@media print {
  .site-header, .fab-wa, .mobile-nav, .scroll-progress, .slider-nav { display: none !important; }
  body { background: #fff; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
