/* ═══════════════════════════════════════════════════════════════
   Campanha "Site Novo GECs 2026" - Astro + Connect Forms
   Design: minimalismo editorial escuro · Archivo + Instrument Serif
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg:        #0B0C0E;
  --bg-panel:  #101216;
  --bg-card:   #14161B;
  --ink:       #F4F5F2;
  --ink-soft:  #B7BCC3;
  --ink-mute:  #7C828C;
  --lime:      #C8F04B;
  --lime-deep: #A8D437;
  --amber:     #FFB224;
  --line:      rgba(255,255,255,.09);
  --line-soft: rgba(255,255,255,.05);
  --font-body: "Archivo", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 16px;
  --container: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain sutil por cima de tudo */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 720px; }

::selection { background: var(--lime); color: #0B0C0E; }

/* ── Tipografia ─────────────────────────────────────────────── */
h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}
h1 em, h2 em, h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  letter-spacing: 0;
}
.eyebrow, .sec-num {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--lime);
}
.sec-num { color: var(--ink-mute); margin-bottom: 18px; }
.sec-intro { color: var(--ink-soft); max-width: 620px; font-size: 1.06rem; margin-bottom: 48px; }
.sec-intro strong { color: var(--ink); }

/* ── Botões ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 15px 30px; border-radius: 100px; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn-primary {
  background: var(--lime); color: #0B0C0E;
  box-shadow: 0 0 0 0 rgba(200,240,75,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 34px -8px rgba(200,240,75,.45); background: #D4F566; }
.btn-primary .arrow { transition: transform .18s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost { color: var(--ink); border-color: var(--line); background: transparent; }
.btn-ghost:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.04); }
.btn-mini { background: var(--lime); color: #0B0C0E; font-size: .82rem; padding: 8px 18px; }
.btn-mini:hover { background: #D4F566; }
.btn-block { width: 100%; }
.btn-lg { padding: 19px 30px; font-size: 1.08rem; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,12,14,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transform: translateY(-100%); transition: transform .35s ease;
}
.topbar.show { transform: translateY(0); }
.topbar-inner {
  max-width: var(--container); margin: 0 auto; padding: 10px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar-status { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--ink-soft); }
.topbar-status b, #urgencia-texto b { color: var(--lime); font-weight: 800; }

/* medidor de vagas: barras em escada, acesas = disponíveis */
.gauge { display: inline-flex; align-items: flex-end; gap: 3px; height: 14px; flex-shrink: 0; }
.gauge .seg {
  width: 4px; border-radius: 2px; background: rgba(255,255,255,.15);
  transition: background .4s ease, box-shadow .4s ease;
}
.gauge .seg:nth-child(1) { height: 6px; }
.gauge .seg:nth-child(2) { height: 8px; }
.gauge .seg:nth-child(3) { height: 10px; }
.gauge .seg:nth-child(4) { height: 12px; }
.gauge .seg:nth-child(5) { height: 14px; }
.gauge .seg.on { background: var(--lime); }
.gauge .seg.leading { animation: gauge-glow 2.4s ease-in-out infinite; }
@keyframes gauge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,240,75,0); }
  50% { box-shadow: 0 0 9px 1px rgba(200,240,75,.6); }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero { position: relative; padding: 96px 0 72px; overflow: hidden; }
.hero-bg { display: none; }
.hero .container { position: relative; }
.hero-brand { margin-bottom: 56px; }
.hero-brand img { display: block; opacity: .95; }
.hero h1 { margin: 18px 0 26px; }
.lede { color: var(--ink-soft); font-size: 1.18rem; max-width: 640px; }
.lede strong { color: var(--ink); font-weight: 700; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 38px 0 26px; }

.pill-urgencia {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: .82rem; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 100px; padding: 9px 18px;
  background: rgba(255,255,255,.03);
}

/* faixa de estatísticas */
.stats {
  margin-top: 72px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat { padding: 28px 24px 6px 24px; border-right: 1px solid var(--line-soft); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }
.stat-num {
  display: block; font-weight: 800; letter-spacing: -.03em;
  font-size: clamp(2rem, 3.6vw, 3rem); color: var(--lime); line-height: 1;
}
.stat-label { display: block; margin-top: 10px; font-size: .82rem; color: var(--ink-mute); line-height: 1.45; }

/* ── Seções ─────────────────────────────────────────────────── */
.section { padding: 108px 0; position: relative; }
.section-panel { background: var(--bg-panel); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

/* ── 01 Cards problema ──────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 32px; transition: border-color .25s ease, transform .25s ease;
}
.card:hover { border-color: rgba(200,240,75,.35); transform: translateY(-3px); }
.card-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); background: rgba(200,240,75,.08); border: 1px solid rgba(200,240,75,.18);
}
.card-icon svg { width: 23px; height: 23px; }
.card h3 { font-size: 1.18rem; font-weight: 700; letter-spacing: -.01em; }
.card p { color: var(--ink-soft); font-size: .96rem; }
.card p strong { color: var(--ink); }

/* ── 02 Comparativo ─────────────────────────────────────────── */
.compare {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 20px;
  padding: 40px; margin-bottom: 40px;
}
.compare-legend { display: flex; gap: 26px; flex-wrap: wrap; margin-bottom: 34px; }
.lg { display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: .8rem; color: var(--ink-soft); }
.lg i { width: 22px; height: 10px; border-radius: 3px; display: inline-block; }
.lg-astro i { background: var(--lime); }
.lg-wp i { background: #3A3F47; }

.metric { margin-bottom: 30px; }
.metric-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  margin-bottom: 12px; font-size: .95rem; font-weight: 600;
}
.metric-better { font-family: var(--font-mono); font-size: .7rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.bar-row { margin-bottom: 8px; background: rgba(255,255,255,.035); border-radius: 8px; overflow: hidden; }
.bar {
  height: 38px; width: 0; min-width: 76px; border-radius: 8px;
  display: flex; align-items: center; justify-content: flex-end; padding: 0 12px;
  font-family: var(--font-mono); font-size: .85rem; font-weight: 600;
  transition: width 1.1s cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
}
.bar small { font-size: .7em; opacity: .7; }
.bar-astro { background: linear-gradient(90deg, var(--lime-deep), var(--lime)); color: #0B0C0E; }
.bar-wp { background: #3A3F47; color: var(--ink-soft); }

.compare-extra { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 10px; }
.extra-row {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--line-soft); font-size: .9rem;
}
.extra-row:last-child { border-bottom: none; }
.extra-label { color: var(--ink-soft); font-weight: 600; }
.extra-wp, .extra-astro { display: flex; align-items: center; gap: 7px; }
.extra-wp { color: var(--ink-mute); }
.extra-astro { color: var(--lime); font-weight: 600; }
.extra-wp svg, .extra-astro svg { width: 15px; height: 15px; flex-shrink: 0; }
.compare-note { margin-top: 22px; font-size: .78rem; color: var(--ink-mute); font-family: var(--font-mono); line-height: 1.6; }

.tech { text-align: center; }
.tech-label { font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-mute); margin-bottom: 26px; }
.tech-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.tech-logos img { opacity: .55; transition: opacity .25s ease; }
.tech-logos img:hover { opacity: 1; }

/* ── 03 Connect Forms ───────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 56px; }
.pillar {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px;
  background: linear-gradient(160deg, rgba(200,240,75,.045), transparent 45%), var(--bg-card);
  transition: border-color .25s ease, transform .25s ease;
}
.pillar:hover { border-color: rgba(200,240,75,.35); transform: translateY(-3px); }
.pillar-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.pillar-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #0B0C0E; background: var(--lime);
}
.pillar-icon svg { width: 23px; height: 23px; }
.pillar h3 { font-size: 1.18rem; font-weight: 700; letter-spacing: -.01em; }
.pillar p { color: var(--ink-soft); font-size: .96rem; }
.pillar p strong { color: var(--ink); }

.forms-block { border: 1px solid var(--line); border-radius: 20px; padding: 40px; background: var(--bg-card); }
.forms-head h3 { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.forms-head p { color: var(--ink-soft); margin: 8px 0 28px; }
.forms-grid {
  list-style: none; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px;
}
.forms-grid li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 500; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px;
  background: rgba(255,255,255,.02);
  transition: border-color .2s ease, color .2s ease;
}
.forms-grid li:hover { border-color: rgba(200,240,75,.4); color: var(--ink); }
.form-ico { width: 17px; height: 17px; flex-shrink: 0; color: var(--lime); opacity: .85; }
.forms-grid li:hover .form-ico { opacity: 1; }
.forms-plus { margin-top: 22px; font-family: var(--font-mono); font-size: .8rem; color: var(--lime); }

.vitalicio {
  margin-top: 18px; display: flex; gap: 24px; align-items: center;
  border: 1px solid rgba(200,240,75,.35); border-radius: 20px; padding: 34px 38px;
  background: linear-gradient(120deg, rgba(200,240,75,.09), rgba(200,240,75,.02));
}
.vitalicio-badge {
  width: 62px; height: 62px; flex-shrink: 0; border-radius: 50%;
  background: var(--lime); color: #0B0C0E; font-size: 1.9rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.vitalicio h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -.01em; }
.vitalicio p { color: var(--ink-soft); font-size: .97rem; }
.vitalicio p strong { color: var(--ink); }

.dataunix {
  margin-top: 18px; display: flex; gap: 26px; align-items: flex-start;
  border: 1px solid var(--line); border-radius: 20px; padding: 34px 38px; background: var(--bg-card);
}
.dataunix-icon {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #0B0C0E; background: var(--lime);
}
.dataunix-icon svg { width: 25px; height: 25px; }
.dataunix-eyebrow {
  font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--ink-mute); margin-bottom: 8px;
}
.dataunix-body h3 { font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: 10px; }
.dataunix-body > p:not(.dataunix-eyebrow) { color: var(--ink-soft); font-size: .97rem; max-width: 620px; margin-bottom: 24px; }
.dataunix-body p strong { color: var(--lime); }
.dataunix-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.dataunix-site {
  display: inline-flex; align-items: center; gap: 6px; color: var(--ink-soft);
  font-size: .9rem; font-weight: 600; text-decoration: none; transition: color .2s ease;
}
.dataunix-site:hover { color: var(--lime); }
.dataunix-site svg { width: 14px; height: 14px; }

/* ── 04 Oferta ──────────────────────────────────────────────── */
.offer { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; align-items: stretch; }
.offer-stack {
  border: 1px solid var(--line); border-radius: 20px; background: var(--bg-card);
  padding: 14px 34px; display: flex; flex-direction: column;
}
.stack-item {
  display: flex; justify-content: space-between; align-items: center; gap: 22px;
  padding: 24px 0; border-bottom: 1px solid var(--line-soft);
}
.stack-item h4 { font-size: 1.06rem; font-weight: 700; letter-spacing: -.01em; }
.stack-item p { font-size: .86rem; color: var(--ink-mute); margin-top: 4px; max-width: 400px; }
.stack-price { font-family: var(--font-mono); font-size: .88rem; text-align: right; white-space: nowrap; color: var(--ink-soft); }
.stack-price s { color: var(--ink-mute); display: block; font-size: .78rem; }
.stack-price b { color: var(--lime); font-weight: 700; }
.stack-total {
  margin-top: auto; padding: 22px 0 16px; text-align: center;
  font-size: .95rem; color: var(--ink-soft);
}
.stack-total b { color: var(--lime); }

.offer-price {
  border: 1px solid rgba(200,240,75,.4); border-radius: 20px; padding: 38px 34px;
  background:
    radial-gradient(400px 200px at 50% -20%, rgba(200,240,75,.14), transparent 70%),
    var(--bg-card);
  display: flex; flex-direction: column; text-align: center;
}
.offer-price-label { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--lime); margin-bottom: 14px; }
.offer-price-value { font-size: 4.4rem; font-weight: 900; letter-spacing: -.04em; line-height: 1; }
.offer-price-value .cur { font-size: .35em; font-weight: 700; vertical-align: super; margin-right: 6px; color: var(--ink-soft); }
.offer-price-terms { margin: 12px 0 26px; font-size: .9rem; color: var(--ink-soft); }
.offer-price-terms b { color: var(--ink); }
.offer-checks { list-style: none; text-align: left; margin-bottom: 28px; }
.offer-checks li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; font-size: .93rem; color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.offer-checks li svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--lime); }
.offer-checks li:last-child { border-bottom: none; }
.offer-checks b { color: var(--lime); }
.offer-reserva-nota { margin-top: 14px; font-size: .8rem; color: var(--ink-mute); }
.offer-janela {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-soft);
  font-size: .82rem; font-weight: 700; color: var(--lime);
}

.isencao {
  margin-top: 18px; border: 1px dashed rgba(255,178,36,.5); border-radius: 20px;
  padding: 36px 40px; background: rgba(255,178,36,.05);
}
.isencao-tag {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: .74rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--amber);
  border: 1px solid rgba(255,178,36,.4); border-radius: 100px; padding: 5px 14px; margin-bottom: 16px;
}
.isencao-tag svg { width: 13px; height: 13px; flex-shrink: 0; }
.isencao h3 { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.isencao p { color: var(--ink-soft); max-width: 720px; }
.isencao p strong { color: var(--ink); }

/* FAQ */
.faq { margin-top: 72px; max-width: 760px; }
.faq h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 22px; letter-spacing: -.02em; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 36px 20px 0;
  font-weight: 600; font-size: 1rem; position: relative;
  transition: color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  color: var(--lime); font-size: 1.4rem; font-weight: 400; transition: transform .25s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--lime); }
.faq details p { padding: 0 0 22px; color: var(--ink-soft); font-size: .95rem; max-width: 680px; }
.faq details p strong { color: var(--ink); }

/* ── 05 Formulário ──────────────────────────────────────────── */
#reservar .pill-urgencia { margin-bottom: 36px; }
.form {
  border: 1px solid var(--line); border-radius: 20px; background: var(--bg-card);
  padding: 42px 40px;
}
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block; font-size: .85rem; font-weight: 600; margin-bottom: 8px;
  color: var(--ink-soft); letter-spacing: .01em;
}
.field label i { color: var(--lime); font-style: normal; }
.field label small { color: var(--ink-mute); font-weight: 400; }
.field input {
  width: 100%; padding: 15px 18px; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  color: var(--ink); font-family: var(--font-body); font-size: 1rem;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input::placeholder { color: var(--ink-mute); }
.field input:focus {
  outline: none; border-color: var(--lime); background: rgba(200,240,75,.05);
  box-shadow: 0 0 0 3px rgba(200,240,75,.12);
}
.field input.invalid { border-color: #F87171; background: rgba(248,113,113,.05); }
.err { display: none; font-size: .78rem; color: #F87171; margin-top: 6px; }
.err.show { display: block; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form .btn { margin-top: 10px; }
.form-erro {
  margin-top: 16px; padding: 14px 18px; border-radius: 12px; font-size: .9rem;
  background: rgba(248,113,113,.08); border: 1px solid rgba(248,113,113,.35); color: #FCA5A5;
}
.form-nota {
  margin-top: 18px; display: flex; align-items: center; justify-content: center; gap: 6px;
  text-align: center; font-size: .8rem; color: var(--ink-mute);
}
.form-nota svg { width: 13px; height: 13px; flex-shrink: 0; }

/* sucesso */
.form-sucesso { text-align: center; padding: 30px 10px; }
.form-sucesso .check {
  width: 74px; height: 74px; margin: 0 auto 26px; border-radius: 50%;
  background: var(--lime); color: #0B0C0E; font-size: 2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  animation: pop .5s cubic-bezier(.2,1.6,.4,1);
}
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-sucesso h3 { font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.form-sucesso p { color: var(--ink-soft); max-width: 460px; margin: 0 auto 26px; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line-soft); padding: 56px 0 44px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 30px; }
.footer-top img { opacity: .85; }
.footer-contacts { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-contacts a { color: var(--ink-soft); text-decoration: none; font-size: .92rem; transition: color .2s ease; }
.footer-contacts a:hover { color: var(--lime); }
.footer-legal { font-size: .78rem; color: var(--ink-mute); line-height: 1.7; }

/* ── Reveal on scroll ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; } .d5 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .bar { transition: none; }
  .gauge .seg.leading { animation: none; }
}

/* ── Responsivo ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .cards, .pillars, .offer { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--line-soft); padding-bottom: 22px; padding-left: 0; }
  .stat:nth-child(even) { padding-left: 24px; }
  .extra-row { grid-template-columns: 1fr; gap: 5px; padding: 14px 0; }
  .compare { padding: 28px 22px; }
  .forms-block { padding: 28px 22px; }
  .vitalicio { flex-direction: column; align-items: flex-start; padding: 28px 26px; }
  .dataunix { flex-direction: column; align-items: flex-start; padding: 28px 26px; }
  .isencao { padding: 28px 26px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 76px 0; }
  .hero { padding: 72px 0 56px; }
  .hero-brand { margin-bottom: 40px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form { padding: 30px 22px; }
  .offer-stack { padding: 6px 22px; }
  .offer-price { padding: 30px 22px; }
  .stack-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .stack-price { text-align: left; }
  .stack-price s { display: inline; margin-right: 8px; }
  .btn { width: 100%; }
  .topbar .btn { width: auto; }
  .hero-cta .btn { width: 100%; }
  .tech-logos { gap: 30px; }
  .tech-logos img { height: 20px; }
}
