/* ==========================================================================
   Lavre aí — site comercial
   Identidade "Azul clássico", alinhada ao sistema (resources/css/app.css).
   ========================================================================== */

:root {
  /* Marca */
  --brand-50:  #eaf2fe;
  --brand-100: #d3e4fd;
  --brand-200: #abc9fb;
  --brand-300: #79a6f6;
  --brand-400: #4a80ef;
  --brand-500: #2a5fe0;
  --brand-600: #1a4bd1;
  --brand-700: #173dad;
  --brand-800: #16327f;
  --brand-900: #112456;
  --navy:      #0f2356;
  --navy-deep: #0a1738;
  --sky:       #00a1de;
  --sky-light: #38bdf8;

  /* Superfícies */
  --bg:        #ffffff;
  --bg-soft:   #f5f8fd;
  --bg-ice:    #eef4fc;
  --card:      #ffffff;
  --border:    #dbe6f5;
  --border-soft: #e8f0fa;

  /* Texto */
  --ink:       #0f1e3d;
  --ink-soft:  #3d4d6e;
  --muted:     #5b6b8c;
  --on-dark:   #eaf2fe;
  --on-dark-muted: #a9bde3;

  /* Apoio */
  --ok:        #0e9f6e;
  --warn:      #b45309;
  --danger:    #dc2626;

  --radius:    16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 35, 86, .06), 0 2px 8px rgba(15, 35, 86, .05);
  --shadow:    0 4px 14px rgba(15, 35, 86, .08), 0 18px 40px -18px rgba(15, 35, 86, .28);
  --shadow-lg: 0 30px 70px -28px rgba(15, 35, 86, .45);
  --container: 1160px;

  --font-head: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand-600); text-decoration: none; }
a:hover { color: var(--brand-700); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); margin: 0 0 .5em; letter-spacing: -.02em; line-height: 1.15; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 5vw, 3.65rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.18rem; font-weight: 700; }
p  { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--brand-400); outline-offset: 2px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--font-mono); }
.muted { color: var(--muted); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .97rem;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(135deg, var(--brand-600), var(--brand-500)); color: #fff; box-shadow: 0 10px 24px -10px rgba(26, 75, 209, .75); }
.btn-primary:hover { color: #fff; box-shadow: 0 16px 34px -12px rgba(26, 75, 209, .85); }
.btn-ghost { background: #fff; color: var(--brand-700); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { color: var(--brand-700); border-color: var(--brand-300); }
.btn-wa { background: #1faf54; color: #fff; box-shadow: 0 10px 24px -12px rgba(31, 175, 84, .8); }
.btn-wa:hover { color: #fff; background: #189347; }
.btn-outline-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.32); backdrop-filter: blur(6px); }
.btn-outline-light:hover { color: #fff; background: rgba(255,255,255,.16); }
.btn-lg { padding: 15px 30px; font-size: 1.03rem; }
.btn-block { width: 100%; }
.btn .spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.btn.loading .spinner { display: inline-block; }
.btn.loading .label { opacity: .75; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: 0 6px 24px -18px rgba(15,35,86,.6); }
.nav { display: flex; align-items: center; gap: 18px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.22rem; color: var(--ink); letter-spacing: -.03em; }
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 34px; height: 34px; border-radius: 10px; flex: 0 0 34px;
  background: linear-gradient(140deg, var(--brand-600), var(--sky));
  color: #fff; display: grid; place-items: center;
  font-size: 1.05rem; font-weight: 800; box-shadow: 0 6px 16px -8px rgba(26,75,209,.9);
}
.brand b { color: var(--brand-600); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--ink-soft); font-weight: 600; font-size: .93rem; position: relative; white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--brand-500); border-radius: 2px; transition: right .22s ease; }
.nav-links a:hover { color: var(--brand-700); }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1180px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: .88rem; }
  .nav-cta .btn { padding: 10px 16px; font-size: .88rem; }
}
@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .nav-links, .nav-cta { display: none; }
  .site-header.nav-open .nav-links,
  .site-header.nav-open .nav-cta {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; left: 16px; right: 16px; top: 74px;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 14px; box-shadow: var(--shadow);
  }
  .site-header.nav-open .nav-cta { top: auto; margin-top: 4px; position: static; border: 0; box-shadow: none; padding: 12px 14px 4px; }
  .site-header.nav-open .nav-links a { padding: 10px 8px; border-radius: 10px; }
  .site-header.nav-open .nav-links a:hover { background: var(--brand-50); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--on-dark);
  background:
    radial-gradient(1100px 500px at 82% -8%, rgba(0,161,222,.34), transparent 62%),
    radial-gradient(760px 420px at 8% 106%, rgba(42,95,224,.42), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 44%, var(--brand-800) 100%);
  padding: clamp(58px, 8vw, 104px) 0 clamp(70px, 9vw, 118px);
}
.hero::before {
  content: ''; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(720px 420px at 30% 20%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(720px 420px at 30% 20%, #000 25%, transparent 78%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .hl {
  background: linear-gradient(100deg, var(--sky-light), #7ee0ff 55%, #bfe9ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { color: var(--on-dark-muted); font-size: clamp(1.02rem, 1.5vw, 1.18rem); max-width: 34em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sky-light); background: rgba(0,161,222,.12);
  border: 1px solid rgba(56,189,248,.32); border-radius: 999px; padding: 7px 15px; margin-bottom: 20px;
}
.eyebrow .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--sky-light); box-shadow: 0 0 0 0 rgba(56,189,248,.7); animation: pulse 2.2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(56,189,248,0); } 100% { box-shadow: 0 0 0 0 rgba(56,189,248,0); } }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 20px; color: var(--on-dark-muted); font-size: .88rem; }
.hero-badges span { display: inline-flex; align-items: center; gap: 7px; }
.hero-badges svg { color: var(--sky-light); flex: 0 0 auto; }

/* Mockup do painel */
.hero-visual { position: relative; }
.mock {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px); overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.28); }
.mock-bar i:first-child { background: #ff6b6b; } .mock-bar i:nth-child(2) { background: #ffd166; } .mock-bar i:nth-child(3) { background: #48d597; }
.mock-bar span { margin-left: 8px; font-family: var(--font-mono); font-size: .76rem; color: var(--on-dark-muted); }
.mock-body { padding: 18px; display: grid; gap: 10px; }
@media (min-width: 941px) { .mock-body { padding-bottom: 54px; } }
.mock-line { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--on-dark); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 12px; padding: 11px 13px; }
html.js .mock-line { opacity: 0; transform: translateY(8px); animation: fadeUp .5s ease forwards; }
html.js .mock-line:nth-child(1) { animation-delay: .15s; } .mock-line:nth-child(2) { animation-delay: .45s; }
html.js .mock-line:nth-child(3) { animation-delay: .75s; } .mock-line:nth-child(4) { animation-delay: 1.05s; }
html.js .mock-line:nth-child(5) { animation-delay: 1.35s; } .mock-line:nth-child(6) { animation-delay: 1.65s; }
.mock-line .pfx { font-family: var(--font-mono); font-weight: 700; color: var(--sky-light); flex: 0 0 auto; }
.mock-line.ok .pfx { color: #48d597; }
.mock-line.ai { border-color: rgba(56,189,248,.4); background: rgba(0,161,222,.12); }
.mock-line small { display: block; color: var(--on-dark-muted); font-size: .8rem; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.mock-float {
  position: absolute; right: -12px; bottom: -26px;
  background: #fff; color: var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.mock-float .ico { width: 38px; height: 38px; border-radius: 11px; background: #e8f9ef; color: #0e9f6e; display: grid; place-items: center; flex: 0 0 38px; }
.mock-float b { display: block; font-family: var(--font-head); font-size: .94rem; }
.mock-float span { font-size: .8rem; color: var(--muted); }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: 2; margin-top: 12px; }
  .mock-float { position: static; margin-top: 16px; }
}

/* ---------- Faixa de números ---------- */
.strip { background: var(--navy-deep); color: var(--on-dark); border-top: 1px solid rgba(255,255,255,.08); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 26px 0; }
.strip-item { text-align: center; padding: 8px 12px; border-right: 1px solid rgba(255,255,255,.1); }
.strip-item:last-child { border-right: 0; }
.strip-item b { display: block; font-family: var(--font-head); font-size: clamp(1.3rem, 2.4vw, 1.85rem); color: #fff; letter-spacing: -.02em; }
.strip-item span { font-size: .86rem; color: var(--on-dark-muted); }
@media (max-width: 720px) { .strip-grid { grid-template-columns: repeat(2, 1fr); } .strip-item:nth-child(2n) { border-right: 0; } }

/* ---------- Blocos ---------- */
.block { padding: clamp(58px, 7vw, 96px) 0; }
.block.soft { background: var(--bg-soft); }
.block.ice { background: linear-gradient(180deg, var(--bg-ice), #fff); }
.block.dark { background: linear-gradient(155deg, var(--navy-deep), var(--brand-800)); color: var(--on-dark); }
.block.dark h2, .block.dark h3 { color: #fff; }
.block.dark p { color: var(--on-dark-muted); }

.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-600); background: var(--brand-50); border: 1px solid var(--brand-100);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.block.dark .kicker { color: var(--sky-light); background: rgba(0,161,222,.14); border-color: rgba(56,189,248,.3); }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-bottom: 0; }
.block.dark .section-head p { color: var(--on-dark-muted); }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-200); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 0; }
.card .ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px;
  background: var(--brand-50); color: var(--brand-600); border: 1px solid var(--brand-100);
}
.card.dor .ic { background: #fff1f0; color: #d94141; border-color: #ffdedb; }
.card.hot { background: linear-gradient(165deg, #fff, var(--brand-50)); border-color: var(--brand-200); }

/* ---------- Passos ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px 24px; box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; line-height: 1;
  color: var(--brand-100); position: absolute; top: 16px; right: 20px;
}
.step h3 { margin-bottom: 6px; padding-right: 46px; }
.step p { color: var(--muted); font-size: .94rem; margin: 0; }
.step .who { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-700); background: var(--brand-50); border-radius: 999px; padding: 4px 10px; margin-bottom: 12px; }
.step .who.cart { color: #0b6b4b; background: #e8f9ef; }

/* ---------- Antes x Depois ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.panel { border-radius: var(--radius); padding: 26px 24px; border: 1px solid var(--border); background: #fff; }
.panel h3 { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.panel li { display: flex; gap: 11px; padding: 9px 0; border-bottom: 1px dashed var(--border-soft); color: var(--ink-soft); font-size: .96rem; }
.panel li:last-child { border-bottom: 0; }
.panel .mk { flex: 0 0 auto; font-weight: 800; }
.panel.before { background: #fffafa; border-color: #ffe1de; }
.panel.before h3::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: #e26a6a; }
.panel.before .mk { color: #d94141; }
.panel.after { background: linear-gradient(165deg, #f4fbf7, #fff); border-color: #cdeddd; }
.panel.after h3::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: #0e9f6e; }
.panel.after .mk { color: #0e9f6e; }

/* ---------- Tabela de ganhos ---------- */
.gain-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gain-table th, .gain-table td { text-align: left; padding: 15px 20px; font-size: .96rem; border-bottom: 1px solid var(--border-soft); vertical-align: top; }
.gain-table thead th { background: var(--bg-ice); font-family: var(--font-head); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-800); }
.gain-table tbody tr:last-child td { border-bottom: 0; }
.gain-table td:first-child { color: var(--muted); width: 46%; }
.gain-table td:last-child { color: var(--ink); font-weight: 600; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- Módulos ---------- */
.mods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 980px) { .mods { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mods { grid-template-columns: 1fr; } }
.mod {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13); border-radius: 14px;
  padding: 18px 18px 16px; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.mod:hover { transform: translateY(-3px); background: rgba(255,255,255,.1); border-color: rgba(56,189,248,.42); }
.mod .tag { font-family: var(--font-mono); font-size: .72rem; color: var(--sky-light); letter-spacing: .06em; }
.mod h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: #fff; margin: 6px 0 4px; }
.mod p { font-size: .85rem; color: var(--on-dark-muted); margin: 0; }
.mod .soon { display: inline-block; margin-top: 8px; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #ffd166; background: rgba(255,209,102,.12); border: 1px solid rgba(255,209,102,.3); border-radius: 999px; padding: 3px 9px; }

/* ---------- Destaque IA ---------- */
.feature-row { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(40px, 6vw, 72px); }
.feature-row.rev .feature-media { order: -1; }
@media (max-width: 900px) { .feature-row, .feature-row.rev { grid-template-columns: 1fr; } .feature-row.rev .feature-media { order: 0; } }
.feature-list li { display: flex; gap: 12px; padding: 11px 0; color: var(--ink-soft); font-size: .99rem; }
.feature-list .mk { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; font-size: .74rem; font-weight: 800; margin-top: 3px; }
.feature-media { background: linear-gradient(160deg, var(--brand-900), var(--brand-700)); border-radius: var(--radius-lg); padding: 26px; color: var(--on-dark); box-shadow: var(--shadow-lg); }
.chat { display: grid; gap: 12px; }
.bubble { max-width: 86%; padding: 12px 15px; border-radius: 16px; font-size: .93rem; line-height: 1.5; }
.bubble.them { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); border-bottom-left-radius: 5px; }
.bubble.me { background: linear-gradient(135deg, #1faf54, #17994a); color: #fff; margin-left: auto; border-bottom-right-radius: 5px; }
.bubble small { display: block; margin-top: 5px; font-size: .74rem; opacity: .75; }

/* ---------- Planos ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
@media (max-width: 940px) { .plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.plan { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; }
.plan h3 { font-size: 1.3rem; }
.plan .price { font-family: var(--font-head); font-size: 1.55rem; font-weight: 800; color: var(--brand-600); margin: 4px 0 6px; letter-spacing: -.02em; }
.plan .desc { color: var(--muted); font-size: .94rem; margin-bottom: 20px; }
.plan ul { margin-bottom: 24px; }
.plan li { display: flex; gap: 10px; padding: 8px 0; font-size: .95rem; color: var(--ink-soft); }
.plan .mk { color: var(--brand-600); font-weight: 800; }
.plan.featured { border-color: var(--brand-500); box-shadow: var(--shadow); transform: translateY(-6px); }
@media (max-width: 940px) { .plan.featured { transform: none; } }
.plan.featured::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); pointer-events: none; box-shadow: inset 0 0 0 1px rgba(26,75,209,.25); }
.plan .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--brand-600), var(--sky)); color: #fff; font-family: var(--font-head); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap; box-shadow: 0 8px 20px -10px rgba(26,75,209,.9); }

/* ---------- Segurança ---------- */
.sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .sec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sec-grid { grid-template-columns: 1fr; } }
.sec-item { display: flex; gap: 14px; padding: 20px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.sec-item .ic { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 12px; background: rgba(0,161,222,.16); color: var(--sky-light); display: grid; place-items: center; }
.sec-item b { display: block; font-family: var(--font-head); color: #fff; font-size: 1rem; margin-bottom: 3px; }
.sec-item span { font-size: .89rem; color: var(--on-dark-muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 22px; box-shadow: var(--shadow-sm); transition: border-color .2s ease; }
.faq details[open] { border-color: var(--brand-200); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 34px 18px 0; font-family: var(--font-head); font-weight: 700; font-size: 1.03rem; color: var(--ink); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--brand-500); transition: transform .2s ease; }
.faq details[open] summary::after { content: '−'; }
.faq .answer { padding: 0 0 18px; color: var(--muted); font-size: .97rem; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- CTA final ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  border-radius: var(--radius-lg); padding: clamp(38px, 6vw, 64px) clamp(24px, 5vw, 56px);
  background:
    radial-gradient(600px 260px at 80% 0%, rgba(0,161,222,.4), transparent 60%),
    linear-gradient(135deg, var(--brand-700), var(--brand-900));
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-dark-muted); max-width: 620px; margin: 0 auto 26px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--navy-deep); color: var(--on-dark-muted); padding: 62px 0 26px; font-size: .93rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; }
.site-footer .brand b { color: var(--sky-light); }
.site-footer h4 { font-family: var(--font-head); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.site-footer a { color: var(--on-dark-muted); }
.site-footer a:hover { color: #fff; }
.foot-links li { padding: 5px 0; }
.foot-contact li { display: flex; gap: 11px; padding: 7px 0; align-items: flex-start; }
.foot-contact svg { flex: 0 0 auto; margin-top: 3px; color: var(--sky-light); }
.foot-contact b { color: #fff; font-weight: 600; display: block; font-size: .95rem; }
.foot-contact span { font-size: .85rem; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: var(--on-dark); transition: background .2s ease, transform .2s ease; }
.socials a:hover { background: var(--brand-600); color: #fff; transform: translateY(-2px); }
.foot-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .85rem; }
.foot-by { display: inline-flex; align-items: center; gap: 8px; }
.foot-by b { color: #fff; }

/* Botão flutuante do WhatsApp */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%; background: #1faf54; color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(31,175,84,.8);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.07); color: #fff; }
@media (max-width: 560px) { .wa-float { width: 52px; height: 52px; right: 14px; bottom: 14px; } }

/* ---------- Reveal ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html.js .mock-line { animation: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Página de contato
   ========================================================================== */
.contact-wrap { padding: clamp(44px, 6vw, 76px) 0 clamp(56px, 7vw, 90px); background: linear-gradient(180deg, var(--bg-ice), #fff 70%); }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(30px, 5vw, 58px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info .eyebrow { color: var(--brand-700); background: var(--brand-50); border-color: var(--brand-100); }
.contact-info h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.contact-info .lead { color: var(--muted); font-size: 1.05rem; }
.info-list { display: grid; gap: 12px; margin-top: 28px; }
.info-item { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow-sm); }
.info-item .ic { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 12px; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; }
.info-item b { display: block; font-family: var(--font-head); font-size: .99rem; color: var(--ink); }
.info-item span { font-size: .87rem; color: var(--muted); }
.info-item a { color: var(--brand-600); font-weight: 600; }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow); }
.form-card h2 { font-size: 1.5rem; margin-bottom: 4px; }
.form-card .sub { color: var(--muted); font-size: .94rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-size: .87rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: var(--font-body); font-size: .97rem; color: var(--ink);
  background: #fff; border: 1px solid var(--border); border-radius: 12px; transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 122px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-400); box-shadow: 0 0 0 4px rgba(74,128,239,.16); }
.field .erro { display: none; color: var(--danger); font-size: .84rem; margin-top: 6px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(220,38,38,.1); }
.field.invalid .erro { display: block; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .row-2 { grid-template-columns: 1fr; } }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: .88rem; color: var(--muted); margin: 6px 0 22px; cursor: pointer; }
.check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--brand-600); flex: 0 0 auto; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.alert { display: none; padding: 13px 16px; border-radius: 12px; font-size: .93rem; margin-bottom: 18px; }
.alert.show { display: block; }
.alert.ok { background: #e8f9ef; color: #0b6b4b; border: 1px solid #cdeddd; }
.alert.err { background: #fff1f0; color: #a52c2c; border: 1px solid #ffdedb; }

/* Modal de verificação */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(10,23,56,.62); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: var(--radius-lg); padding: 32px 28px; width: 100%; max-width: 420px; text-align: center; box-shadow: var(--shadow-lg); animation: modalIn .25s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.modal .shield { width: 58px; height: 58px; border-radius: 18px; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; margin: 0 auto 16px; }
.modal h3 { font-size: 1.28rem; margin-bottom: 6px; }
.modal p { color: var(--muted); font-size: .94rem; }
.code-show { font-size: 2.2rem; font-weight: 700; letter-spacing: .5rem; color: var(--brand-600); background: var(--brand-50); border: 1px dashed var(--brand-200); border-radius: 14px; padding: 12px 8px 12px 16px; margin: 12px 0 8px; }
.modal .hint { font-size: .84rem; color: var(--muted); margin-bottom: 18px; }
.code-inputs { display: flex; gap: 10px; justify-content: center; margin-bottom: 12px; }
.code-inputs input { width: 56px; height: 62px; text-align: center; font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: var(--ink); border: 1px solid var(--border); border-radius: 14px; background: #fff; }
.code-inputs input:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 4px rgba(74,128,239,.18); }
.code-inputs.shake { animation: shake .36s; }
@keyframes shake { 0%,100% { transform: translateX(0); } 20%,60% { transform: translateX(-7px); } 40%,80% { transform: translateX(7px); } }
.modal-err { color: var(--danger); font-size: .88rem; min-height: 20px; margin-bottom: 14px; }
.modal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
