/* ============================================================
   CIF Igrejas — Landing
   Paleta: azul-marinho #0a2540 | laranja #ff6b35 | dourado #d4a574
   Fontes: Fraunces (display) + Plus Jakarta Sans (body)
============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0a2540;
  --navy-2:      #0e2e52;
  --navy-deep:   #061a30;
  --orange:      #ff6b35;
  --orange-2:    #ff8a5b;
  --orange-deep: #e85619;
  --gold:        #d4a574;
  --gold-2:      #e8c197;
  --green:       #0a9d6c;
  --whats:       #25D366;

  --ink:         #0b1726;
  --ink-2:       #2b3a4d;
  --muted:       #5b6b80;
  --muted-2:     #8595a8;
  --line:        #e6ebf2;
  --line-2:      #d8e0ea;
  --bg:          #ffffff;
  --bg-soft:     #f7f9fc;
  --bg-warm:     #fbf8f3;

  --shadow-sm:  0 1px 2px rgba(10,37,64,.06), 0 1px 1px rgba(10,37,64,.04);
  --shadow-md:  0 6px 18px rgba(10,37,64,.08), 0 2px 6px rgba(10,37,64,.05);
  --shadow-lg:  0 24px 60px rgba(10,37,64,.14), 0 8px 24px rgba(10,37,64,.08);
  --shadow-orange: 0 18px 40px rgba(255,107,53,.30), 0 4px 12px rgba(255,107,53,.20);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 24px;

  --maxw: 1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Tipografia display ---------- */
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; color: var(--ink); }
em { font-style: italic; color: var(--orange); font-weight: 500; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--gold-2); }
.eyebrow-gold  { color: #b8895a; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-title { font-size: clamp(30px, 4vw, 46px); text-wrap: pretty; }
.section-title em { font-style: italic; }
.section-sub  { font-size: 17px; color: var(--muted); margin-top: 16px; text-wrap: pretty; }
.section-title-light { color: #fff; }
.section-sub-light   { color: rgba(255,255,255,.78); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  font-weight: 600; font-size: 15px;
  border-radius: 12px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 50px rgba(255,107,53,.38); }

.btn-ghost {
  background: rgba(10,37,64,.04);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: rgba(10,37,64,.07); }

.btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.14); }

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,.18); }

.btn-whats { background: var(--whats); color: #fff; box-shadow: 0 12px 30px rgba(37,211,102,.35); }
.btn-whats:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(37,211,102,.45); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(10,37,64,.06);
  transition: box-shadow .2s, background .2s;
}
.nav.scrolled { box-shadow: 0 6px 24px rgba(10,37,64,.06); background: rgba(255,255,255,.92); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.logo-mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(10,37,64,.18);
}
.logo-text { font-size: 17px; letter-spacing: -.01em; color: var(--ink); }
.logo-accent { color: var(--orange); }

.nav-links { display: flex; gap: 28px; margin-left: 12px; flex: 1; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 6px 0;
}
.nav-links a:hover { color: var(--orange); }

.nav-burger {
  display: none;
  flex-direction: column; gap: 4px; padding: 8px;
}
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #fbfaf6 0%, #fff 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,37,64,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,37,64,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 50%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: -100px; right: -120px;
  width: 620px; height: 620px;
  background: radial-gradient(closest-side, rgba(255,107,53,.30), transparent 70%);
  filter: blur(40px);
  animation: heroGlow 9s ease-in-out infinite alternate;
}
.hero-glow-2 {
  top: 200px; left: -180px;
  width: 500px; height: 500px;
  background: radial-gradient(closest-side, rgba(212,165,116,.22), transparent 70%);
  animation-duration: 11s;
}
@keyframes heroGlow {
  0%   { transform: translate3d(0,0,0) scale(1); opacity: .85; }
  100% { transform: translate3d(40px,30px,0) scale(1.1); opacity: 1; }
}

.hero-inner { position: relative; text-align: center; }

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.badge strong { color: var(--orange); font-weight: 700; }
.badge-dot {
  width: 8px; height: 8px;
  background: var(--orange); border-radius: 50%;
  position: relative;
}
.badge-pulse .badge-dot::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(.8); opacity: .5; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
  font-size: clamp(38px, 5.6vw, 68px);
  margin: 28px auto 22px;
  max-width: 920px;
  text-wrap: balance;
}
.hero-sub {
  max-width: 680px; margin: 0 auto;
  font-size: 18px; color: var(--muted);
  text-wrap: pretty;
}
.hero-sub strong { color: var(--ink); }

.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin: 36px 0 60px;
}

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 920px; margin: 0 auto;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
}
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; font-weight: 500; }

/* anim-up staggered */
.anim-up { opacity: 0; transform: translateY(18px); animation: animUp .7s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: var(--d, 0ms); }
@keyframes animUp { to { opacity: 1; transform: translateY(0); } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Vídeo ---------- */
.video-section { padding: 0 0 80px; }
.video-wrap { max-width: 960px; margin: 0 auto; }
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}
.video-poster {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #14365e 100%);
  cursor: pointer;
}
.video-poster-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 40%, transparent 100%);
}
.video-play {
  width: 84px; height: 84px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px rgba(255,107,53,.45);
  position: relative; z-index: 2;
  transition: transform .2s;
}
.video-play:hover { transform: scale(1.06); }
.video-caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.85);
  font-size: 14px; font-weight: 500;
  letter-spacing: .02em;
}

/* ---------- Capture ---------- */
.capture {
  position: relative; overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #102f56 100%);
  color: #fff;
}
.capture-bg { position: absolute; inset: 0; pointer-events: none; }
.capture-glow {
  position: absolute;
  top: 50%; right: -200px; transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(255,107,53,.18), transparent 70%);
  filter: blur(50px);
}
.capture-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative;
}
.capture-copy { color: #fff; }
.capture-copy .section-title { font-size: clamp(28px, 3.4vw, 40px); }
.bullets { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.bullets li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.88); font-size: 15.5px; }
.bullet-icon {
  width: 22px; height: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}

.capture-trust { display: flex; align-items: center; gap: 16px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.trust-avatars { display: flex; }
.trust-avatars .ava { margin-left: -10px; border: 2px solid var(--navy); }
.trust-avatars .ava:first-child { margin-left: 0; }
.trust-text { font-size: 13px; color: rgba(255,255,255,.78); }
.trust-text strong { color: #fff; font-size: 15px; }

.ava {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: #fff;
}
.ava-1 { background: linear-gradient(135deg, #ff6b35, #e85619); }
.ava-2 { background: linear-gradient(135deg, #5b8def, #3b6fd6); }
.ava-3 { background: linear-gradient(135deg, #0a9d6c, #07744f); }
.ava-4 { background: linear-gradient(135deg, #d4a574, #b88857); }

.ava-grad-1 { background: linear-gradient(135deg, #ff6b35, #d4a574); width: 48px; height: 48px; font-size: 14px; }
.ava-grad-2 { background: linear-gradient(135deg, #5b8def, #a855f7); width: 48px; height: 48px; font-size: 14px; }
.ava-grad-3 { background: linear-gradient(135deg, #0a9d6c, #14b8a6); width: 48px; height: 48px; font-size: 14px; }

/* Form */
.capture-form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.form-head { margin-bottom: 22px; }
.form-head h3 { font-size: 24px; }
.form-head p { font-size: 14.5px; color: var(--muted); margin-top: 4px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit; font-size: 15px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.field input:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,107,53,.12);
}
.field input.uppercase { text-transform: uppercase; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row-3-1 { grid-template-columns: 3fr 1fr; }
.btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2.5px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.is-loading .btn-label { opacity: .6; }
.is-loading .btn-spinner { display: inline-block; }

.form-foot { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 14px; }

.form-success {
  text-align: center; padding: 20px 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.success-ring {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(10,157,108,.12);
  color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------- Features ---------- */
.features { padding: 100px 0; background: var(--bg-soft); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feat {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.feat::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--c, var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feat:hover::before { transform: scaleX(1); }

.feat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: color-mix(in oklch, var(--c) 14%, white);
  color: var(--c);
  margin-bottom: 16px;
}
.feat h3 { font-size: 18px; margin-bottom: 6px; font-weight: 600; }
.feat p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.feat-ai {
  background: linear-gradient(135deg, #faf6ff 0%, #fff 100%);
}

/* ---------- Novelties 2026 ---------- */
.novelties { padding: 100px 0; background: var(--bg); }
.novelties-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.novel {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}
.novel:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.novel-tag {
  position: absolute; top: 20px; right: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255,107,53,.30);
}
.novel-icon {
  font-size: 40px; line-height: 1;
  width: 72px; height: 72px;
  border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #fff7ee 0%, #fde2cb 100%);
  border: 1px solid #f5d6b3;
}
.novel-icon-kids { background: linear-gradient(135deg, #fff0f6 0%, #ffd9e8 100%); border-color: #ffc0d6; }
.novel h3 { font-size: 26px; margin-bottom: 8px; }
.novel-lead { font-size: 16px; color: var(--ink-2); margin-bottom: 22px; }
.novel-lead strong { color: var(--orange); }
.novel-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.novel-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.novel-list .bullet-icon { background: var(--green); width: 20px; height: 20px; font-size: 12px; }

.novel-foot { padding-top: 22px; border-top: 1px dashed var(--line-2); }
.novel-foot-label { font-size: 12px; font-weight: 700; color: var(--muted-2); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.bank-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 12px; font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.chip-more { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Kids mock */
.kids-mock {
  display: grid; grid-template-columns: 88px 1fr; gap: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  align-items: center;
}
.kids-mock-qr {
  width: 88px; height: 88px;
  border-radius: 8px;
  background:
    repeating-conic-gradient(#0a2540 0% 25%, #fff 0% 50%) 0 0 / 16px 16px,
    repeating-conic-gradient(#0a2540 0% 25%, #fff 0% 50%);
  background-color: #fff;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1.5px var(--navy), inset 0 0 0 4px #fff;
  position: relative;
}
.kids-mock-qr::before, .kids-mock-qr::after {
  content: ''; position: absolute;
  width: 22px; height: 22px;
  background: #fff;
  box-shadow: inset 0 0 0 4px var(--navy), inset 0 0 0 6px #fff, inset 0 0 0 10px var(--navy);
}
.kids-mock-qr::before { top: 4px; left: 4px; }
.kids-mock-qr::after  { top: 4px; right: 4px; }
.kids-mock-info { font-size: 13.5px; }
.kids-name { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.kids-row { color: var(--ink-2); margin-bottom: 4px; }
.kids-warn { color: #b8480c; }
.kids-status { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; margin-top: 6px; }
.status-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 3px rgba(10,157,108,.18); }

/* ---------- Plans ---------- */
.plans { padding: 100px 0; background: var(--bg-soft); }
.plans-grid { display: flex; justify-content: center; }
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 44px 36px 36px;
  width: 100%; max-width: 480px;
  box-shadow: var(--shadow-md);
}
.plan-feature {
  border: 2px solid var(--orange);
  box-shadow: 0 30px 70px rgba(255,107,53,.18), var(--shadow-md);
  transform: translateY(-4px);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(255,107,53,.32);
}
.plan-name { font-size: 24px; margin-bottom: 4px; }
.plan-sub  { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.plan-price { padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 22px; text-align: center; }
.price-promo { display: inline-flex; align-items: baseline; gap: 4px; font-family: 'Fraunces', serif; }
.price-currency { font-size: 22px; color: var(--ink-2); font-weight: 600; }
.price-value    { font-size: 64px; font-weight: 700; color: var(--navy); letter-spacing: -.03em; }
.price-period   { font-size: 16px; color: var(--muted); font-weight: 500; }
.price-old      { font-size: 13px; color: var(--muted); margin-top: 4px; }
.strike { text-decoration: line-through; color: var(--muted-2); }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.plan-features li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.check { color: var(--green); font-weight: 700; }

.plan-guarantees {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 40px;
  max-width: 820px; margin-inline: auto;
}
.guarantee {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
}
.guarantee-icon { font-size: 22px; }
.guarantee strong { display: block; font-size: 14.5px; color: var(--ink); }
.guarantee span   { font-size: 13px; color: var(--muted); }

/* ---------- Testimonials ---------- */
.testi { padding: 100px 0; background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stars { color: #f5b800; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote { font-size: 15.5px; color: var(--ink-2); line-height: 1.6; margin-bottom: 22px; }
.testi-card blockquote em { color: var(--ink-2); font-weight: 400; }
.testi-foot { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.testi-foot strong { display: block; font-size: 14.5px; }
.testi-foot span { font-size: 13px; color: var(--muted); }

/* ---------- Demo (legacy, mantido caso volte) ---------- */
.demo { display: none; }
.demo-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #143a66 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 64px;
  box-shadow: var(--shadow-lg);
}
.demo-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(closest-side, rgba(255,107,53,.30), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.demo-content { position: relative; max-width: 720px; }
.creds {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin: 32px 0;
  max-width: 540px;
}
.cred {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-md);
  padding: 14px 18px;
}
.cred-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.cred code { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 16px; color: var(--gold-2); font-weight: 500; }
.demo-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- CTA Final ---------- */
.cta-final { padding: 100px 0; background: var(--bg-soft); }
.cta-final-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-final-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.78); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 48px; padding-bottom: 48px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,.72); }
.footer ul a:hover { color: var(--orange); }
.footer-desc { font-size: 14px; max-width: 360px; margin-top: 14px; line-height: 1.6; }
.logo-footer .logo-text { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 13px;
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ---------- WhatsApp Float ---------- */
.whats-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px;
  background: var(--whats);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 36px rgba(37,211,102,.42), 0 6px 14px rgba(0,0,0,.12);
  animation: floatBounce 3s ease-in-out infinite;
}
.whats-float:hover { transform: scale(1.06); }
.whats-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--whats);
  opacity: .55;
  animation: whatsPulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes whatsPulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav.menu-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 24px;
    box-shadow: 0 12px 32px rgba(10,37,64,.10);
  }
  .nav.menu-open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav.menu-open .nav-links a:last-child { border-bottom: 0; }

  .hero { padding: 120px 0 60px; }
  .stats { grid-template-columns: repeat(2, 1fr); }

  .capture-inner { grid-template-columns: 1fr; gap: 40px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .novelties-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .demo-card { padding: 44px 28px; }
  .plan-guarantees { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .container { padding: 0 18px; }
  .hero { padding: 110px 0 50px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .stats { grid-template-columns: 1fr 1fr; padding: 18px; gap: 14px; }
  .stat-num { font-size: 28px; }

  .nav-cta .btn { display: none; }

  .capture-form { padding: 24px; }
  .field-row { grid-template-columns: 1fr; }
  .field-row-3-1 { grid-template-columns: 2fr 1fr; }

  .features-grid { grid-template-columns: 1fr; }
  .novel { padding: 28px 22px; }
  .novel h3 { font-size: 22px; }
  .kids-mock { grid-template-columns: 72px 1fr; gap: 14px; padding: 14px; }
  .kids-mock-qr { width: 72px; height: 72px; }

  .demo-card { padding: 32px 22px; }
  .creds { grid-template-columns: 1fr; }
  .demo-ctas { flex-direction: column; }
  .demo-ctas .btn { width: 100%; justify-content: center; }

  .cta-final-buttons { flex-direction: column; }
  .cta-final-buttons .btn { width: 100%; justify-content: center; }

  .footer-bottom .container { flex-direction: column; align-items: flex-start; }

  .whats-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .whats-float svg { width: 24px; height: 24px; }
}
