/* ============================================================
   BOVILYS — Site institucional (hero em vídeo + storytelling)
   Identidade: verde Bovilys #005119, neon #3FD74B, soft #EBFFEB.
   Fontes: Outfit (display) + Inter (body), via Google Fonts.
   Sem frameworks, sem CDN de JS.
   ============================================================ */

:root {
  --ink: #04180C;                 /* verde quase preto — painéis dark */
  --ink-2: #06240F;
  --ink-3: #0A3317;
  --green-700: #005119;           /* brand — verde Bovilys */
  --green-600: #1FA33F;
  --neon: #3FD74B;                /* brand-bright — verde neon */
  --soft: #EBFFEB;                /* brand-soft */
  --paper: #FFFFFF;
  --paper-2: #F4FAF2;             /* off-white esverdeado */
  --line: #E3EFE2;
  --txt: #21332A;
  --txt-soft: #5A7164;
  --txt-faint: #8AA394;
  --grad-brand: linear-gradient(120deg, #1FA33F, #3FD74B);
  --grad-brand-deep: linear-gradient(120deg, #005119, #1FA33F);
  --r-card: 18px;
  --r-pill: 999px;
  --shadow-card: 0 10px 34px rgba(4, 24, 12, .08);
  --shadow-deep: 0 24px 60px rgba(2, 16, 8, .5);
  --header-h: 72px;
  --wrap: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--txt);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, video, svg { max-width: 100%; }
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.15; margin: 0 0 .5em; color: var(--ink); letter-spacing: -.015em; }
p { margin: 0 0 1em; }
a { color: var(--green-700); text-decoration: none; }
button { font: inherit; cursor: pointer; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
::selection { background: rgba(63,215,75,.25); color: #005119; }

/* ============ Botões ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r-pill);
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .9688rem;
  border: 1.5px solid transparent; transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--grad-brand); color: #04260E; box-shadow: 0 8px 26px rgba(31, 163, 63, .35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(63, 215, 75, .4); }
.btn--ghost { border-color: rgba(255,255,255,.45); color: #fff; background: rgba(255,255,255,.04); backdrop-filter: blur(4px); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.btn--lg { padding: 16px 34px; font-size: 1.0625rem; }
.btn--sm { padding: 10px 20px; font-size: .875rem; }

/* ============ Header ============ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.site-header--solid { background: rgba(4, 24, 12, .92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(255,255,255,.06); }
.site-header .wrap { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo-img { height: 38px; width: auto; display: block; }
.logo-img-sm { height: 28px; width: auto; }
.main-nav { display: none; align-items: center; gap: 28px; }
.main-nav a { color: rgba(255,255,255,.78); font-size: .9063rem; font-weight: 500; transition: color .2s; }
.main-nav a:hover { color: #fff; }
.header-actions { display: none; align-items: center; gap: 12px; }
@media (min-width: 1024px) {
  .main-nav, .header-actions { display: flex; }
  .site-header .nav-toggle { display: none; }
}

/* Troca de idioma (alterna BR ⇄ EN no clique) */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85); border-radius: var(--r-pill); padding: 8px 14px;
  font-size: .8125rem; font-weight: 600; line-height: 1;
  transition: border-color .2s, background .2s, color .2s;
}
.lang-toggle:hover { border-color: rgba(63,215,75,.6); color: #fff; background: rgba(63,215,75,.1); }
.lang-toggle svg { display: block; flex: none; width: 15px; height: 15px; }
.lang-toggle span { display: block; }
.mobile-langs { display: flex; gap: 8px; margin-top: 16px; }

/* Menu mobile */
.nav-toggle { background: none; border: 0; color: #fff; padding: 8px; display: inline-flex; }
.nav-toggle svg { width: 26px; height: 26px; }
.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 55;
  background: rgba(4,24,12,.97); backdrop-filter: blur(14px);
  display: none; flex-direction: column; padding: 18px 24px 26px; gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,.85); padding: 11px 0; font-size: 1.0313rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-nav .btn { margin-top: 14px; }

/* ============ Hero: vídeo em loop + capítulos por scroll ============ */
.scrub { position: relative; height: 420vh; background: var(--ink); }
.scrub-sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; color: #fff; }
.scrub-video, .scrub-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.scrub-poster {
  z-index: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(31,163,63,.28), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(63,215,75,.14), transparent 50%),
    linear-gradient(160deg, var(--ink-3) 0%, var(--ink) 65%);
}
.scrub-video { z-index: 1; opacity: 0; transition: opacity .8s; }
.scrub-video.is-playing { opacity: 1; }
.scrub-scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(4,24,12,.72) 0%, rgba(4,24,12,.25) 30%, rgba(4,24,12,.2) 62%, rgba(4,24,12,.78) 100%),
    radial-gradient(ellipse at 50% 42%, rgba(4,24,12,0) 34%, rgba(4,24,12,.42) 100%);
}
.scrub-chapter {
  position: absolute; inset: 0; z-index: 3; display: flex; align-items: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .5s, visibility .5s;
}
.scrub-chapter.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.scrub-chapter .wrap { width: 100%; }
.scrub-chapter--start { align-items: flex-start; }
.scrub-chapter--start .wrap { padding-top: calc(var(--header-h) + 3.5vh); display: flex; flex-direction: column; align-items: center; }
.scrub-copy {
  max-width: 880px; margin: 0 auto; text-align: center;
  padding: 42px 52px 38px;
  background: rgba(2, 16, 8, .58);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-deep);
  text-shadow: 0 2px 20px rgba(2, 18, 10, .8);
  transform: translateY(20px); transition: transform .6s;
}
@media (max-width: 639px) { .scrub-copy { padding: 30px 22px 28px; border-radius: 20px; } }
.scrub-chapter.is-active .scrub-copy { transform: none; }
.scrub-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: var(--r-pill);
  border: 1px solid rgba(63,215,75,.4); background: rgba(63,215,75,.12);
  color: var(--neon); font-size: .8438rem; font-weight: 600; letter-spacing: .02em;
  margin-bottom: 22px; text-shadow: none;
}
.scrub-badge svg { width: 15px; height: 15px; }
.scrub-copy h1 { color: #fff; font-size: clamp(2.5rem, 4.9vw, 4rem); font-weight: 700; margin-bottom: 18px; }
.scrub-copy h1 em {
  font-style: normal;
  background: linear-gradient(115deg, #A8F5AE, #F2FFF2);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { color: rgba(255,255,255,.92); font-weight: 500; font-size: clamp(1.0625rem, 1.6vw, 1.25rem); max-width: 680px; margin: 0 auto 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-ctas .btn { text-shadow: none; }
.scrub-card {
  max-width: 430px; padding: 28px 32px;
  background: rgba(3, 18, 9, .68); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-card); backdrop-filter: blur(10px);
  box-shadow: var(--shadow-deep);
  transform: translateY(20px); transition: transform .6s;
}
.scrub-chapter.is-active .scrub-card { transform: none; }
.scrub-card svg { width: 30px; height: 30px; color: var(--neon); margin-bottom: 14px; }
.scrub-card h2 { color: #fff; font-size: 1.4375rem; margin-bottom: 8px; }
.scrub-card p { color: rgba(255,255,255,.78); font-size: .9688rem; margin: 0; }
.scrub-card--right { margin-left: auto; }
.scrub-chapter--end { align-items: flex-end; }
.scrub-end {
  margin: 0 auto 11vh; text-align: center; max-width: 760px; padding: 46px 52px;
  border-radius: var(--r-card);
  background: radial-gradient(ellipse at center, rgba(3,18,9,.74) 0%, rgba(3,18,9,.36) 60%, rgba(3,18,9,0) 100%);
  transform: translateY(20px); transition: transform .6s;
}
.scrub-chapter.is-active .scrub-end { transform: none; }
.scrub-end h2 { color: #fff; font-size: clamp(1.75rem, 3.2vw, 2.5rem); margin-bottom: 22px; text-shadow: 0 2px 24px rgba(2,18,10,.85); }

/* KPI chips de vidro no rodapé da abertura */
.hero-kpis {
  position: absolute; left: 0; right: 0; bottom: 92px; z-index: 3;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; padding: 0 24px;
}
.hero-kpi {
  display: flex; align-items: center; gap: 10px; padding: 11px 20px;
  border-radius: var(--r-pill);
  background: rgba(3, 18, 9, .52); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
}
.hero-kpi b { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.0625rem; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-kpi span { font-size: .7813rem; color: rgba(255,255,255,.75); }

/* Mini-cards "ao vivo" nas laterais (só telas largas) */
.hero-live {
  position: absolute; top: 46%; z-index: 3; width: 236px; display: none;
  padding: 18px 20px; border-radius: 16px;
  background: rgba(3, 18, 9, .55); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px); box-shadow: var(--shadow-deep);
}
.hero-live--left { left: clamp(24px, 4vw, 90px); animation: float-a 7s ease-in-out infinite alternate; }
.hero-live--right { right: clamp(24px, 4vw, 90px); animation: float-b 8.5s ease-in-out infinite alternate; }
@media (min-width: 1400px) { .hero-live { display: block; } }
@keyframes float-a { from { transform: translateY(-7px); } to { transform: translateY(9px); } }
@keyframes float-b { from { transform: translateY(7px); } to { transform: translateY(-9px); } }
.hero-live-head { display: flex; align-items: center; gap: 8px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .8125rem; color: #fff; margin-bottom: 9px; }
.hero-live-head svg { width: 15px; height: 15px; color: var(--neon); flex: none; }
.live-dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 9px rgba(63,215,75,.8); animation: dot-pulse 1.6s ease-in-out infinite; }
.hero-live-body { font-size: .7813rem; color: rgba(255,255,255,.65); }
.hero-live-meter { height: 5px; border-radius: 3px; background: rgba(255,255,255,.12); overflow: hidden; margin-top: 11px; }
.hero-live-meter i { display: block; height: 100%; border-radius: 3px; background: var(--grad-brand); }
.hero-wave { display: flex; align-items: flex-end; gap: 3px; height: 26px; margin: 11px 0; }
.hero-wave i { width: 4px; height: 100%; border-radius: 2px; background: var(--grad-brand); transform-origin: bottom; animation: wave 1.15s ease-in-out infinite; }
.hero-wave i:nth-child(1) { animation-delay: 0s; }
.hero-wave i:nth-child(2) { animation-delay: .15s; }
.hero-wave i:nth-child(3) { animation-delay: .3s; }
.hero-wave i:nth-child(4) { animation-delay: .45s; }
.hero-wave i:nth-child(5) { animation-delay: .6s; }
.hero-wave i:nth-child(6) { animation-delay: .75s; }
.hero-wave i:nth-child(7) { animation-delay: .9s; }
@keyframes wave { 0%, 100% { transform: scaleY(.25); } 50% { transform: scaleY(1); } }

.scrub-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.scrub-hint svg { width: 18px; height: 18px; animation: hint-bob 1.8s ease-in-out infinite; }
@keyframes hint-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
.scrub-progress {
  position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
  width: 3px; height: 140px; border-radius: 2px; background: rgba(255,255,255,.18);
  overflow: hidden; z-index: 4;
}
.scrub-progress-fill { width: 100%; height: 100%; background: var(--grad-brand); transform-origin: top; transform: scaleY(0); }

/* Fallback estático (reduced motion / mobile sem story) */
.scrub--static { height: auto; }
.scrub--static .scrub-sticky { position: relative; height: auto; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding: 110px 0 44px; }
.scrub--static .scrub-progress, .scrub--static .scrub-hint, .scrub--static .hero-live { display: none; }
.scrub--static .scrub-chapter { position: absolute; inset: 0; display: none; }
.scrub--static .scrub-chapter--start { display: flex; opacity: 1; visibility: visible; pointer-events: auto; position: relative; }
.scrub--static .scrub-copy { transform: none; padding-top: 0; }
.scrub--static .hero-kpis { position: static; margin-top: 30px; padding: 0; }
.scrub--novideo .scrub-video { display: none; }
@media (prefers-reduced-motion: reduce) {
  .scrub-hint svg, .hero-live, .hero-wave i, .live-dot { animation: none; }
  .scrub-chapter, .scrub-copy, .scrub-card, .scrub-end { transition: none; }
}

/* ============ Seções claras ============ */
.section { padding: 96px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sect-title { font-size: clamp(1.75rem, 3.4vw, 2.5rem); font-weight: 700; }
.sect-sub { color: var(--txt-soft); font-size: 1.0625rem; margin: 0; }
.pill-badge {
  display: inline-block; padding: 7px 18px; border-radius: var(--r-pill);
  font-size: .8125rem; font-weight: 600; letter-spacing: .03em;
  background: rgba(255,255,255,.07); color: var(--neon); border: 1px solid rgba(63,215,75,.3);
  margin-bottom: 18px;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s, transform .7s; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Eyebrow */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green-700); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--grad-brand); border-radius: 2px; flex: none; }
.section-head .eyebrow { justify-content: center; }
.field-panel .eyebrow { color: var(--neon); }

/* Tese: o problema */
.thesis-lead { text-align: center; max-width: 780px; margin: 0 auto 52px; }
.thesis-lead .eyebrow { justify-content: center; }
.thesis-lead h2 { font-size: clamp(1.875rem, 3.6vw, 2.625rem); font-weight: 700; }
.thesis-lead h2 em { font-style: normal; background: var(--grad-brand-deep); -webkit-background-clip: text; background-clip: text; color: transparent; }
.thesis-lead p { font-size: 1.0625rem; color: var(--txt-soft); margin: 0 auto; max-width: 44rem; }
.proof { display: grid; gap: 18px; grid-template-columns: 1fr; max-width: 1100px; margin: 0 auto; }
@media (min-width: 640px) { .proof { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .proof { grid-template-columns: repeat(4, 1fr); } }
.proof-item {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 26px 24px 22px; box-shadow: var(--shadow-card);
  overflow: hidden;
}
.proof-item::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--grad-brand); }
.proof-num {
  display: block; font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 2.25rem; line-height: 1; letter-spacing: -.03em; white-space: nowrap;
  color: var(--ink); margin-bottom: 12px;
}
.proof-num b { font-weight: 700; background: var(--grad-brand-deep); -webkit-background-clip: text; background-clip: text; color: transparent; }
.proof-txt { font-size: .875rem; color: var(--txt-soft); display: block; }
.proof-txt strong { display: block; color: var(--ink); font-family: 'Outfit', sans-serif; font-size: .9688rem; margin-bottom: 4px; }

/* ============ Jornada: frames de navegador com telas simuladas ============ */
.journey-chapter { padding: 84px 0; }
.journey-chapter--mist { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.shot { max-width: 880px; margin: 0 auto; }
.frame { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; box-shadow: var(--shadow-card); }
.frame-bar { display: flex; align-items: center; gap: 7px; padding: 10px 14px; background: #ECF5EA; border-bottom: 1px solid var(--line); }
.frame-bar i { width: 11px; height: 11px; border-radius: 50%; background: #cdd6cd; }
.frame-bar i:nth-child(1) { background: #ff5f57; } .frame-bar i:nth-child(2) { background: #febc2e; } .frame-bar i:nth-child(3) { background: #28c840; }
.frame-bar em { margin-left: 10px; font-style: normal; font-size: .78rem; color: var(--txt-faint); background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 4px 12px; }
.shot-cap { text-align: center; max-width: 640px; margin: 26px auto 0; }
.shot-step { display: inline-block; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green-700); background: var(--soft); border-radius: var(--r-pill); padding: 4px 12px; margin-bottom: 12px; }
.shot-cap strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.25rem; color: var(--ink); margin-bottom: 6px; }
.shot-cap p { font-size: .9688rem; color: var(--txt-soft); margin: 0; }

/* Telas simuladas (mock UI no padrão do app) */
.mock { padding: 22px 24px 24px; background: #FBFDFA; display: grid; gap: 16px; }
@media (max-width: 639px) { .mock { padding: 16px; } }
.mock-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.mock-head strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.0625rem; color: var(--ink); }
.mock-eyebrow { display: block; font-size: 10px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--txt-faint); }
.mock-pill { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: var(--r-pill); font-size: .75rem; font-weight: 600; background: var(--paper-2); border: 1px solid var(--line); color: var(--txt-soft); }
.mock-pill--brand { background: var(--soft); border-color: rgba(0,81,25,.15); color: var(--green-700); }
.mock-steps { display: grid; gap: 10px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 639px) { .mock-steps { grid-template-columns: 1fr; } }
.mock-step { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 13px 14px; display: grid; gap: 5px; justify-items: start; }
.mock-step.is-done { background: var(--soft); border-color: rgba(0,81,25,.18); }
.mock-step.is-now { border-color: rgba(217,152,7,.4); box-shadow: 0 0 0 3px rgba(245,183,49,.12); }
.mock-step-day { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .8125rem; color: var(--green-700); }
.mock-step strong { font-family: 'Outfit', sans-serif; font-size: .875rem; color: var(--ink); }
.mock-badge { display: inline-flex; align-items: center; padding: 2px 9px; border-radius: var(--r-pill); font-size: .6875rem; font-weight: 600; background: var(--paper-2); color: var(--txt-soft); border: 1px solid var(--line); }
.mock-badge--success { background: #EAF5EE; color: #1a6b35; border-color: rgba(26,107,53,.2); }
.mock-badge--warning { background: #FDF6E3; color: #B47D06; border-color: rgba(180,125,6,.25); }
.mock-badge--danger { background: #FBEAEA; color: #C22B2B; border-color: rgba(194,43,43,.2); }
.mock-badge--brand { background: var(--soft); color: var(--green-700); border-color: rgba(0,81,25,.18); }
.mock-list { display: grid; gap: 8px; }
.mock-list-title { font-size: 10px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--txt-faint); }
.mock-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: 10px; background: #fff;
  padding: 9px 13px; font-size: .8125rem; color: var(--txt-soft);
}
.mock-row > span:nth-child(2) { flex: 1; min-width: 120px; }
.mock-row .mock-badge { margin-left: auto; }
.mock-row--faint { background: var(--paper-2); }
.mock-tag { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .75rem; color: var(--ink); background: var(--paper-2); border-radius: 6px; padding: 2px 8px; }
.mock-cols { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
@media (max-width: 767px) { .mock-cols { grid-template-columns: 1fr; } }
.mock-panel { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 13px 14px; display: grid; gap: 8px; align-content: start; }
.mock-panel .mock-row { border: 0; padding: 4px 0; background: none; }
.mock-stock { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: var(--ink); }
.mock-stock i { font-style: normal; color: var(--txt-faint); font-weight: 400; }
.mock-banner {
  display: flex; align-items: center; gap: 10px;
  border-radius: 12px; padding: 12px 16px; font-size: .8438rem; color: var(--green-700);
  background: var(--soft); border: 1px solid rgba(0,81,25,.15);
}
.mock-banner svg { width: 18px; height: 18px; flex: none; }
.mock-banner b { font-family: 'Outfit', sans-serif; }
.mock-kpis { display: grid; gap: 10px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 639px) { .mock-kpis { grid-template-columns: 1fr; } }
.mock-kpi { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 13px 14px; display: grid; gap: 3px; }
.mock-kpi b { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.5rem; line-height: 1.1; letter-spacing: -.02em; color: var(--ink); }
.mock-hint { font-size: .7188rem; color: var(--txt-faint); }
.mock-rank {
  flex: none; width: 22px; height: 22px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .75rem; color: #04260E; background: var(--grad-brand);
}
.mock-money { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .75rem; color: var(--txt-soft); }

/* ============ Painéis dark (verde profundo) ============ */
.field-panel { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff; }
.field-panel .sect-title { color: #fff; }
.field-panel .sect-sub { color: rgba(255,255,255,.6); }
.monitor { background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-card); overflow: hidden; }
.monitor-head { display: flex; align-items: center; gap: 10px; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); }
.monitor-dot { width: 9px; height: 9px; border-radius: 50%; }
.monitor-dot--green { background: var(--neon); box-shadow: 0 0 10px rgba(63,215,75,.7); }
.monitor-dot--pulse { animation: dot-pulse 1.6s ease-in-out infinite; }
@keyframes dot-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.monitor-title { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .9375rem; color: rgba(255,255,255,.9); }
.monitor-tag { margin-left: auto; font-size: .7188rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #04260E; background: var(--grad-brand); padding: 4px 10px; border-radius: var(--r-pill); }
.monitor-body { padding: 24px; }

/* Gauge do Índice Reprodutivo */
.gauge-wrap { text-align: center; }
.gauge { width: 130px; height: 130px; margin: 4px auto 18px; }
.gauge-ring { transition: stroke-dashoffset 1.6s cubic-bezier(.4,0,.2,1); }
.gauge-desc { color: rgba(255,255,255,.65); font-size: .875rem; max-width: 340px; margin: 0 auto 18px; }
.gauge-bars { display: grid; gap: 12px; text-align: left; }
.gauge-bar-row { display: flex; align-items: center; justify-content: space-between; font-size: .8438rem; color: rgba(255,255,255,.75); margin-bottom: 5px; }
.gauge-bar-row strong { color: #fff; font-weight: 600; }
.gauge-track { height: 6px; border-radius: 3px; background: rgba(255,255,255,.08); overflow: hidden; }
.gauge-fill { height: 100%; border-radius: 3px; background: var(--grad-brand); width: 0; transition: width 1.2s cubic-bezier(.4,0,.2,1); }

/* IA: seção-assinatura (dark, com vídeo ambiente) */
.ai-feature { position: relative; overflow: hidden; }
.ambient-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .22; pointer-events: none;
}
.ai-feature::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 30%, rgba(63,215,75,.12), transparent 55%);
  pointer-events: none;
}
.ai-feature .wrap { position: relative; z-index: 1; }
.ai-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; max-width: 1020px; margin: 0 auto; }
@media (min-width: 1024px) { .ai-grid { grid-template-columns: 1.05fr .95fr; gap: 64px; } }
.ai-copy h2 { color: #fff; font-size: clamp(1.875rem, 3.4vw, 2.5rem); }
.ai-copy h2 em { font-style: normal; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ai-copy > p { color: rgba(255,255,255,.72); font-size: 1.0625rem; max-width: 32rem; }
.ai-points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.ai-points li { display: flex; gap: 12px; color: rgba(255,255,255,.82); font-size: .9375rem; }
.ai-points svg { flex: none; width: 18px; height: 18px; color: var(--neon); margin-top: 2px; }
.ai-exclusive-tag {
  display: inline-block; margin-bottom: 16px;
  font-size: .7188rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #04260E; background: var(--grad-brand); padding: 5px 14px; border-radius: var(--r-pill);
}

/* Caso financeiro */
.cost-rows { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.cost-row {
  display: grid; grid-template-columns: 1fr auto; gap: 4px 18px; align-items: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px; padding: 16px 22px;
}
.cost-label { grid-column: 1; grid-row: 1; color: rgba(255,255,255,.85); font-size: .9375rem; font-weight: 500; }
.cost-how { grid-column: 1; grid-row: 2; color: rgba(255,255,255,.5); font-size: .7813rem; }
.cost-val { grid-column: 2; grid-row: 1 / span 2; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--neon); }
.cost-total {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  border-radius: 14px; padding: 20px 22px; margin-top: 6px;
  background: linear-gradient(120deg, rgba(31,163,63,.18), rgba(63,215,75,.14));
  border: 1px solid rgba(63,215,75,.35);
}
.cost-total-label { font-family: 'Outfit', sans-serif; font-weight: 700; color: #fff; }
.cost-total-val { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem); background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cost-note { text-align: center; color: rgba(255,255,255,.45); font-size: .8125rem; margin-top: 18px; }

/* Para quem */
.who-grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; max-width: 1100px; margin: 0 auto; }
@media (min-width: 1024px) { .who-grid { grid-template-columns: repeat(5, 1fr); } }
.who-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 22px 18px; box-shadow: var(--shadow-card); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: transform .25s, box-shadow .25s;
}
.who-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(4,24,12,.12); }
.who-ico { width: 44px; height: 44px; border-radius: 14px; background: var(--grad-brand); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.who-ico svg { width: 22px; height: 22px; color: #04260E; }
.who-title { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--ink); font-size: .9688rem; }
.who-sub { font-size: .8125rem; color: var(--txt-soft); min-height: 2.6em; }
.who-stat { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.25rem; background: var(--grad-brand-deep); -webkit-background-clip: text; background-clip: text; color: transparent; margin-top: 6px; }
.who-stat-lbl { font-size: .7188rem; color: var(--txt-faint); }

/* Confiança: segurança + implantação (dark) */
.trust-grid { display: grid; gap: 48px; grid-template-columns: 1fr; max-width: 1020px; margin: 0 auto; }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.trust-col h3 { color: #fff; font-size: 1.1875rem; margin-bottom: 20px; }
.reg-list { display: grid; gap: 14px; align-content: start; }
.reg-card { display: flex; gap: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-card); padding: 18px 20px; }
.reg-dot { flex: none; width: 10px; height: 10px; border-radius: 50%; background: var(--grad-brand); margin-top: 7px; }
.reg-card h4 { color: #fff; font-size: .9375rem; margin: 0 0 4px; }
.reg-card p { font-size: .8438rem; color: rgba(255,255,255,.6); margin: 0; }
.cert-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.cert-pill { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.75); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); padding: 5px 12px; border-radius: var(--r-pill); }

.tl { position: relative; padding-left: 26px; display: grid; gap: 24px; }
.tl::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, #1FA33F, #3FD74B); border-radius: 2px; opacity: .5; }
.tl-item { position: relative; }
.tl-item::before { content: ''; position: absolute; left: -26px; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--ink-2); border: 3px solid var(--green-600); }
.tl-week { font-size: .7188rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--neon); }
.tl-item h4 { color: #fff; font-size: 1.0313rem; margin: 3px 0 4px; }
.tl-item p { color: rgba(255,255,255,.6); font-size: .875rem; margin: 0; }
.trust-note { text-align: center; font-size: .8125rem; color: rgba(255,255,255,.45); margin-top: 40px; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-card); background: #fff; transition: border-color .2s, box-shadow .2s; }
.faq-item.is-open { border-color: var(--green-600); box-shadow: var(--shadow-card); }
.faq-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.0313rem; color: var(--ink);
  padding: 20px 24px; min-height: 48px;
}
.faq-trigger svg { width: 20px; height: 20px; color: var(--green-600); flex: none; transition: transform .25s; }
.faq-item.is-open .faq-trigger svg { transform: rotate(45deg); }
.faq-body { display: none; padding: 0 24px 20px; color: var(--txt-soft); font-size: .9688rem; }
.faq-item.is-open .faq-body { display: block; }

/* ============ CTA final ============ */
.cta-final { position: relative; overflow: hidden; }
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(31,163,63,.22), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(63,215,75,.16), transparent 50%);
  pointer-events: none;
}
.cta-final .wrap { position: relative; z-index: 2; }
.cta-particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.cta-cards { display: grid; gap: 18px; grid-template-columns: 1fr; max-width: 920px; margin: 0 auto 48px; }
@media (min-width: 768px) { .cta-cards { grid-template-columns: repeat(3, 1fr); } }
.cta-card { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.11); border-radius: var(--r-card); padding: 24px; }
.cta-card-num { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--neon); margin-bottom: 8px; }
.cta-card h3 { color: #fff; font-size: 1.0313rem; margin-bottom: 6px; }
.cta-card p { color: rgba(255,255,255,.6); font-size: .875rem; margin-bottom: 12px; }
.cta-card-tag { font-size: .75rem; font-weight: 600; color: var(--neon); }

/* Formulário */
.form-panel { max-width: 620px; margin: 0 auto; }
.form-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field--full { grid-column: 1 / -1; }
.field-input {
  width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px; color: #fff; padding: 13px 16px; font: inherit; font-size: .9375rem;
  transition: border-color .2s, background .2s;
}
.field-input::placeholder { color: rgba(255,255,255,.4); }
.field-input:focus { outline: none; border-color: var(--neon); background: rgba(255,255,255,.09); }
select.field-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238AA394' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
select.field-input option { background: var(--ink-2); color: #fff; }
textarea.field-input { resize: vertical; min-height: 90px; }
.form-ok { text-align: center; padding: 30px 10px; }
.form-ok svg { width: 40px; height: 40px; color: var(--neon); margin-bottom: 10px; }
.form-ok-title { font-family: 'Outfit', sans-serif; font-weight: 700; color: #fff; font-size: 1.125rem; }
.form-ok-sub { color: rgba(255,255,255,.6); font-size: .9063rem; }
.form-err { text-align: center; color: #FF9AA8; font-size: .875rem; padding-top: 10px; }
.hidden { display: none !important; }

/* ============ Páginas legais (Privacidade / Termos / LGPD) ============ */
.header-light {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-light .wrap { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.back-link { font-size: .875rem; font-weight: 500; color: var(--txt-soft); transition: color .2s; }
.back-link:hover { color: var(--green-700); }
.legal-main { padding: 128px 0 80px; }
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.legal-head { margin-bottom: 40px; }
.legal-badge {
  display: inline-block; padding: 7px 16px; border-radius: var(--r-pill);
  font-size: .8125rem; font-weight: 600; letter-spacing: .02em;
  background: var(--soft); color: var(--green-700); border: 1px solid rgba(0,81,25,.15);
  margin-bottom: 16px;
}
.legal-head h1 { font-size: clamp(1.875rem, 4vw, 2.5rem); margin-bottom: 0; }
.legal-date { color: var(--txt-faint); font-size: .875rem; margin-top: 12px; }
.legal-content h2 { font-size: 1.35rem; margin: 2.5rem 0 .75rem; }
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 .5rem; }
.legal-content p { color: var(--txt-soft); font-size: .95rem; line-height: 1.75; margin-bottom: 1rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin: 0 0 1rem; }
.legal-content ul li { color: var(--txt-soft); font-size: .95rem; line-height: 1.75; margin-bottom: .25rem; }
.legal-content strong { color: var(--txt); }
.legal-content a { color: var(--green-600); text-decoration: underline; }
.legal-content a:hover { color: var(--green-700); }
.legal-footer { background: #fff; border-top: 1px solid var(--line); padding: 36px 0; }
.legal-footer .wrap { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 16px; text-align: center; }
@media (min-width: 640px) { .legal-footer .wrap { flex-direction: row; text-align: left; } }
.legal-footer .footer-brand { display: flex; align-items: center; gap: 10px; }
.legal-footer .footer-tagline { color: var(--txt-faint); }
.legal-footer .footer-links a { color: var(--txt-faint); }
.legal-footer .footer-links a:hover, .legal-footer .footer-links a.is-current { color: var(--green-700); }
.legal-footer .footer-links a.is-current { font-weight: 600; }
.legal-footer .footer-copy { color: var(--txt-faint); }

/* ============ Footer ============ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 42px 0; border-top: 1px solid rgba(255,255,255,.06); }
.site-footer .wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
@media (min-width: 768px) { .site-footer .wrap { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-tagline { font-size: .8125rem; color: rgba(255,255,255,.45); }
.footer-links { display: flex; gap: 22px; font-size: .8438rem; }
.footer-links a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--neon); }
.footer-copy { font-size: .8125rem; color: rgba(255,255,255,.4); }
