/* ============================================================
   EON Energia Solar — Landing Page
   Design system: verde #00DC5D · preto #050505 · laranja #EE7348
   Tipografia: Satoshi (display/body) + Poppins (fallback)
   ============================================================ */

:root {
  --green: #00DC5D;
  --green-700: #00b94e;
  --black: #050505;
  --orange: #EE7348;
  --gray: #EAEAEA;
  --white: #FFFFFF;

  --ink: #0b0b0c;
  --muted: #6a6c6e;
  --muted-2: #9a9c9e;
  --line: #e6e7e8;
  --hero-bg: var(--black);

  --maxw: 1200px;
  --radius-card: 24px;
  --shadow-soft: 0 1px 2px rgba(5,5,5,0.04), 0 8px 28px rgba(5,5,5,0.06);

  --font-display: "Satoshi", "Poppins", system-ui, sans-serif;
  --font-body: "Satoshi", "Poppins", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.eon-root { overflow-x: clip; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: clamp(56px, 8vw, 120px); position: relative; }
.section-tight { padding-block: clamp(40px, 5vw, 72px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--green); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; margin: 0; letter-spacing: -0.02em; }
.h-section { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.04; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.6; color: var(--muted); max-width: 46ch; }
p { margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--green);
  --fg: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}
.btn svg { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-green { --bg: var(--green); --fg: var(--black); }
.btn-green:hover { background: var(--green-700); }
.btn-dark { --bg: var(--black); --fg: var(--white); }
.btn-dark:hover { background: #1b1b1d; }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.28); }
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-ghost-dark { background: transparent; color: var(--black); border-color: rgba(5,5,5,0.18); }
.btn-ghost-dark:hover { border-color: var(--black); }
.btn-lg { padding: 19px 34px; font-size: 1.075rem; }
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand-logo { height: 25px; width: auto; display: block; }
.brand-logo--footer { height: 30px; }
.brand .logo-mark { width: 34px; height: 34px; }
.brand .wordmark { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; letter-spacing: -0.04em; }
.header-nav { display: flex; align-items: center; gap: 30px; }
.header-nav a.navlink { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color .15s; white-space: nowrap; }
.header-nav a.navlink:hover { color: var(--ink); }
@media (max-width: 900px) { .header-nav .navlink { display: none; } }

/* ---------- Hero ---------- */
.hero { background: var(--hero-bg); color: var(--white); position: relative; overflow: hidden; }
.hero.hero-green { background: var(--green); color: var(--black); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-block: clamp(64px, 8vw, 116px); }
.hero-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 8px 15px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.04);
}
.hero.hero-green .hero-tag { border-color: rgba(5,5,5,0.18); color: rgba(5,5,5,0.78); background: rgba(255,255,255,0.18); }
.hero-tag .pin { width: 7px; height: 7px; border-radius: 999px; background: var(--green); }
.hero.hero-green .hero-tag .pin { background: var(--black); }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.0; letter-spacing: -0.035em;
  margin-top: 22px;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--green); }
.hero.hero-green h1 .accent { color: var(--white); }
.hero-sub { margin-top: 22px; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.55; color: rgba(255,255,255,0.74); max-width: 44ch; }
.hero.hero-green .hero-sub { color: rgba(5,5,5,0.74); }
.hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { margin-top: 34px; display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.hero.hero-green .hero-trust { color: rgba(5,5,5,0.6); }
.hero-trust .sep { width: 4px; height: 4px; border-radius: 999px; background: currentColor; opacity: .5; }

/* Giant decorative E behind hero */
.hero-glyph {
  position: absolute; z-index: 1;
  right: -6%; top: 50%; transform: translateY(-50%);
  height: 150%; width: auto; opacity: 0.13;
  color: var(--green);
  pointer-events: none;
}
.hero.hero-green .hero-glyph { color: var(--black); opacity: 0.08; }

.hero-media { position: relative; z-index: 2; }

/* Hero photo (real drone shot) */
.hero-photo { position: relative; margin: 0; border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 4 / 5; background: #111; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; display: block; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,5,5,0.55) 100%); pointer-events: none; }
.hero-photo-cap {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: #fff;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(5,5,5,0.5); border: 1px solid rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.hero-photo-cap .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--green); }

/* Hero carousel */
.hero-carousel { display: block; }
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
  opacity: 0; transition: opacity .6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-carousel .hero-photo-cap { z-index: 3; animation: capIn .5s ease; }
@keyframes capIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.hero-dots {
  position: absolute; right: 16px; bottom: 18px; z-index: 3;
  display: flex; gap: 7px;
}
.hero-dot {
  width: 8px; height: 8px; padding: 0; border: none; cursor: pointer;
  border-radius: 999px; background: rgba(255,255,255,0.45);
  transition: background .2s ease, width .2s ease;
}
.hero-dot:hover { background: rgba(255,255,255,0.75); }
.hero-dot.active { background: var(--green); width: 22px; }
.hero-dot:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { .hero-slide { transition: none; } .hero-carousel .hero-photo-cap { animation: none; } }

/* ---------- Social proof strip ---------- */
.proof { background: var(--gray); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-block: 30px; }
.proof-item { display: flex; align-items: center; gap: 12px; }
.proof-item .ico { width: 22px; height: 22px; color: var(--green-700); flex: none; }
.proof-item .ico svg { width: 100%; height: 100%; }
.proof-item span { font-weight: 600; font-size: 0.98rem; color: var(--ink); line-height: 1.25; }
@media (max-width: 760px) { .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 18px; } }

/* ---------- Benefícios ---------- */
.bens-head { display: flex; flex-direction: column; gap: 16px; max-width: 60ch; }
.bens-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ben-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 30px 26px 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ben-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: #dadcdd; }
.ben-ico {
  width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--green) 18%, white);
  color: var(--green-700);
  margin-bottom: 22px;
}
.ben-ico svg { width: 26px; height: 26px; }
.ben-card h3 { font-size: 1.22rem; line-height: 1.15; margin-bottom: 10px; }
.ben-card p { color: var(--muted); font-size: 0.97rem; line-height: 1.55; }
.ben-card--filled { background: var(--black); border-color: var(--black); }
.ben-card--filled h3 { color: var(--white); }
.ben-card--filled p { color: rgba(255,255,255,0.62); }
.ben-card--filled .ben-ico { background: rgba(0,220,93,0.16); color: var(--green); }
.ben-card--filled:hover { border-color: var(--green); }

@media (max-width: 980px) { .bens-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .bens-grid { grid-template-columns: 1fr; } }

/* ---------- Calculadora ---------- */
.calc { background: var(--black); color: var(--white); border-radius: 0; }
.calc-glyph { position: absolute; left: -8%; bottom: -30%; height: 150%; color: var(--green); opacity: 0.07; pointer-events: none; z-index: 1; }
.calc-inner { position: relative; z-index: 2; }
.calc-head { max-width: 56ch; }
.calc-head .eyebrow { color: rgba(255,255,255,0.55); }
.calc-head .eyebrow .dot { background: var(--green); }
.calc-head h2 { color: var(--white); margin-top: 14px; }
.calc-head .lead { color: rgba(255,255,255,0.66); margin-top: 16px; }
.calc-grid { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
@media (max-width: 920px) { .calc-grid { grid-template-columns: 1fr; } }

.calc-panel {
  background: #0e0e10;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 30px;
}
.calc-panel.form { background: rgba(255,255,255,0.03); }
.field { margin-bottom: 20px; }
.field:last-child { margin-bottom: 0; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 9px; color: rgba(255,255,255,0.92); }
.field label .opt { color: rgba(255,255,255,0.4); font-weight: 500; }
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap .prefix {
  position: absolute; left: 16px; font-weight: 600; color: rgba(255,255,255,0.5); font-size: 1rem; pointer-events: none;
}
.field input[type="text"], .field input[type="tel"] {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem; font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 15px 16px;
  transition: border-color .15s ease, background .15s ease;
}
.field input.has-prefix { padding-left: 40px; }
.field input::placeholder { color: rgba(255,255,255,0.32); font-weight: 500; }
.field input:focus { outline: none; border-color: var(--green); background: rgba(0,220,93,0.06); }
.field input.invalid { border-color: var(--orange); background: rgba(238,115,72,0.07); }
.field-err { color: var(--orange); font-size: 0.84rem; margin-top: 7px; font-weight: 600; min-height: 1px; }

.cep-ok { display: inline-flex; align-items: center; gap: 7px; margin-top: 9px; color: var(--green); font-weight: 700; font-size: 0.88rem; }
.cep-ok svg { width: 16px; height: 16px; }
.cep-no { display: inline-flex; align-items: center; gap: 7px; margin-top: 9px; color: rgba(255,255,255,0.5); font-weight: 600; font-size: 0.86rem; }

.lgpd { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; user-select: none; }
.lgpd input { position: absolute; opacity: 0; width: 0; height: 0; }
.lgpd .box {
  flex: none; width: 22px; height: 22px; border-radius: 7px; margin-top: 1px;
  border: 1.5px solid rgba(255,255,255,0.3); display: grid; place-items: center;
  transition: background .15s, border-color .15s;
}
.lgpd .box svg { width: 14px; height: 14px; color: var(--black); opacity: 0; transition: opacity .12s; }
.lgpd input:checked + .box { background: var(--green); border-color: var(--green); }
.lgpd input:checked + .box svg { opacity: 1; }
.lgpd input:focus-visible + .box { outline: 3px solid var(--green); outline-offset: 2px; }
.lgpd span.txt { font-size: 0.88rem; line-height: 1.45; color: rgba(255,255,255,0.66); }

/* Result panel */
.calc-result { display: flex; flex-direction: column; min-height: 100%; }
.result-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; flex: 1; padding: 30px 10px; color: rgba(255,255,255,0.5); }
.result-empty .big-ico { width: 56px; height: 56px; color: rgba(255,255,255,0.22); margin-bottom: 18px; }
.result-empty .big-ico svg { width: 100%; height: 100%; }
.result-empty p { max-width: 30ch; line-height: 1.5; }

.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 20px 18px;
}
.kpi.featured { background: var(--green); border-color: var(--green); }
.kpi .kpi-label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.01em; }
.kpi.featured .kpi-label { color: rgba(5,5,5,0.7); }
.kpi .kpi-value { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 2.1rem); letter-spacing: -0.03em; margin-top: 8px; line-height: 1; }
.kpi.featured .kpi-value { color: var(--black); }
.kpi .kpi-sub { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 6px; }
.kpi.featured .kpi-sub { color: rgba(5,5,5,0.55); }

.result-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.5; margin-top: 16px; }
.result-cta { margin-top: 18px; }
.result-cta .btn { width: 100%; }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ---------- Como funciona ---------- */
.steps { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; position: relative; }
.step { position: relative; padding-right: 22px; }
.step .num {
  width: 46px; height: 46px; border-radius: 999px; display: grid; place-items: center;
  background: var(--green); color: var(--black); font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  position: relative; z-index: 2;
}
.step .connector { position: absolute; top: 23px; left: 46px; right: -8px; height: 2px; background: color-mix(in srgb, var(--green) 45%, white); z-index: 1; }
.step:last-child .connector { display: none; }
.step h3 { font-size: 1.18rem; margin-top: 20px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 18px; }
  .step .connector { display: none; }
}
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Diferenciais ---------- */
.diff { background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.diff-glyph { position: absolute; right: -5%; top: -20%; height: 150%; color: var(--green); opacity: 0.06; pointer-events: none; z-index: 1; }
.diff-inner { position: relative; z-index: 2; }
.diff .eyebrow { color: rgba(255,255,255,0.55); }
.diff h2 { color: var(--white); margin-top: 14px; max-width: 18ch; }
.diff-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.diff-card { border-top: 2px solid rgba(255,255,255,0.14); padding-top: 26px; }
.diff-card .dnum { font-family: var(--font-display); font-weight: 700; font-size: 3rem; line-height: 1; color: var(--green); letter-spacing: -0.03em; }
.diff-card h3 { color: var(--white); font-size: 1.35rem; margin-top: 18px; margin-bottom: 12px; }
.diff-card p { color: rgba(255,255,255,0.62); font-size: 0.97rem; line-height: 1.6; }
@media (max-width: 820px) { .diff-grid { grid-template-columns: 1fr; gap: 8px; } .diff-card { padding-top: 22px; padding-bottom: 22px; } }

/* ---------- FAQ ---------- */
.faq-grid { margin-top: 44px; display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 24px; } }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--ink);
}
.faq-q:hover { color: #000; }
.faq-q:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 6px; }
.faq-q .chev { flex: none; width: 22px; height: 22px; color: var(--muted); transition: transform .25s ease; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); color: var(--green-700); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 4px 24px; color: var(--muted); font-size: 0.98rem; line-height: 1.65; max-width: 62ch; }

/* ---------- CTA final ---------- */
.cta-final { background: var(--green); color: var(--black); position: relative; overflow: hidden; }
.cta-glyph { position: absolute; right: 2%; top: 50%; transform: translateY(-50%); height: 180%; color: var(--black); opacity: 0.07; pointer-events: none; }
.cta-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 26px; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.04; max-width: 18ch; text-wrap: balance; }
.cta-inner .lead { color: rgba(5,5,5,0.72); max-width: 50ch; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: rgba(255,255,255,0.7); padding-block: 64px 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer .brand .wordmark { color: var(--white); }
.footer-blurb { margin-top: 18px; max-width: 38ch; line-height: 1.6; font-size: 0.95rem; color: rgba(255,255,255,0.55); }
.footer-blurb + .footer-blurb { margin-top: 10px; }
.footer-col h4 { color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 18px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.62); text-decoration: none; font-size: 0.96rem; line-height: 1.4; margin-bottom: 12px; transition: color .15s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 28px; font-size: 0.86rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-bottom a:hover { color: var(--green); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- EON symbol glyph (CSS mask, tints to currentColor) ---------- */
.eon-glyph {
  display: block;
  aspect-ratio: 1578 / 1698;
  background-color: currentColor;
  -webkit-mask: url("../assets/eon-symbol.png") center / contain no-repeat;
  mask: url("../assets/eon-symbol.png") center / contain no-repeat;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive hero ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: 2; }
  .hero-photo { aspect-ratio: 16 / 10; }
  .hero-glyph { opacity: 0.08; height: 90%; right: -20%; }
}

/* ---------- Responsive calculadora / cards ---------- */
@media (max-width: 600px) {
  .container { padding-inline: 18px; }
  .calc-panel { padding: 22px 20px; }
  /* Telas OLED exageram qualquer verde sobre preto puro — reduz o glifo decorativo. */
  .calc-glyph, .diff-glyph, .cta-glyph { opacity: 0.035; }
  .kpi-grid { gap: 10px; }
  .kpi { padding: 16px 14px; }
}
@media (max-width: 420px) {
  .kpi-grid { grid-template-columns: 1fr; }
}

/* ---------- Campaign banner sticky ---------- */
.campaign-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  color: var(--black);
  padding: 10px 24px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}
.campaign-banner a {
  color: var(--black);
  text-decoration: underline;
  margin-left: 8px;
  white-space: nowrap;
}
.campaign-banner a:hover { opacity: 0.75; }

/* ---------- Seção campanha ---------- */
.campanha {
  background: var(--black);
  color: var(--white);
}
.campanha-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 20px;
}
.campanha-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
}
.campanha-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin: 0 0 28px;
  max-width: 50ch;
}
.campanha-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.campanha-lista li {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.9);
}
.campanha-lista li strong { color: var(--white); }
.campanha-validade {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0 0 32px;
}

/* ---------- KPI parcela (72x em destaque) ---------- */
.kpi-value--green { color: var(--green); }
.kpi.kpi-parcela { grid-column: 1 / -1; border-color: rgba(0,220,93,0.45); background: rgba(0,220,93,0.07); }
.kpi-mini { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 8px; }

/* ---------- Dica do formulário (só conta) ---------- */
.calc-form-hint { font-size: 0.9rem; line-height: 1.5; color: rgba(255,255,255,0.55); margin: 18px 0 0; }

/* ---------- Contato opcional (dentro do resultado) ---------- */
.result-contact { margin-top: 18px; padding-top: 18px; border-top: 1px dashed rgba(255,255,255,0.12); }
.result-contact-head { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.78); margin: 0 0 12px; }
.result-contact-head .opt { color: rgba(255,255,255,0.4); font-weight: 500; }
.result-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.result-contact .field { margin-bottom: 0; }
@media (max-width: 480px) { .result-contact-grid { grid-template-columns: 1fr; } }

/* ---------- Microcopy abaixo do CTA ---------- */
.result-cta-micro { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-align: center; line-height: 1.5; margin: 12px 0 0; }

/* ---------- Botão flutuante de WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green); color: var(--black);
  padding: 13px 18px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,220,93,0.35), 0 4px 12px rgba(0,0,0,0.25);
  transition: transform .15s ease, background .15s ease;
}
.wa-float:hover { background: var(--green-700); transform: translateY(-2px); }
.wa-float svg { flex: none; }
@media (max-width: 480px) {
  .wa-float { right: 14px; bottom: 14px; padding: 13px; }
  .wa-float-txt { display: none; }
}

/* ---------- Banner pós-resultado ---------- */
.result-campanha {
  background: var(--green);
  color: var(--black);
  padding: 20px 24px;
  border-radius: 16px;
  margin: 20px 0 4px;
}
.result-campanha-title {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 6px;
}
.result-campanha-sub {
  font-size: 0.88rem;
  margin: 0;
  opacity: 0.85;
}

/* ---------- Disclaimer footer campanha ---------- */
.footer-campanha-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 0;
  margin-bottom: 8px;
}
.footer-campanha-disclaimer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin: 0;
}
