:root {
  --navy: #0B1B4D;
  --blue: #1D5CFF;
  --blue-dark: #0B3BD6;
  --cyan: #19B8FF;
  --green: #25D366;
  --bg: #FFFFFF;
  --bg-soft: #EEF3FF;
  --line: #D9E2F2;
  --text: #0B1B4D;
  --muted: #4B5675;
  --font-head: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 24px;
  --shadow: 0 24px 48px rgba(11, 27, 77, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
svg[data-lucide], .lucide, .ico-brand { width: 1.25em; height: 1.25em; flex: none; }
[hidden] { display: none !important; }

.container { width: min(1280px, 100% - 40px); margin-inline: auto; }
@media (min-width: 900px) { .container { width: min(1280px, 100% - 80px); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font: 600 15px/1 var(--font-body);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 12px 20px; font-size: 14px; }
.btn--lg { padding: 17px 28px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 24px rgba(29, 92, 255, .35); }
.btn--primary:hover { background: var(--blue-dark); }
.btn--outline { background: #fff; color: var(--navy); border-color: var(--navy); }
.btn--white { background: #fff; color: var(--navy); }
.btn--ghost { background: transparent; color: #fff; border-color: #8FB5FF; }
.btn--whatsapp { background: var(--green); color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, .35); }
.btn svg { width: 20px; height: 20px; }
.btn--sm svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; }
.header.is-scrolled { border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo img { width: 52px; height: 40px; object-fit: contain; }
.logo--sm img { width: 36px; height: 28px; }
.logo__word { display: inline-flex; align-items: baseline; font-weight: 700; font-size: 22px; letter-spacing: -.01em; color: var(--navy); }
.logo__accent { color: var(--blue); }
.logo__word small { font-size: 14px; font-weight: 500; margin-left: 1px; }
.nav { display: none; gap: 32px; }
.nav a { font-weight: 500; font-size: 15px; color: var(--muted); }
.nav a:hover { color: var(--blue); }
@media (min-width: 1000px) { .nav { display: flex; } }
@media (max-width: 480px) { .header .btn span { display: none; } .header .btn { padding: 12px; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(60% 80% at 85% 20%, #C9E4FF 0%, rgba(243,247,255,0) 70%), #F3F7FF;
  padding: 56px 0 0;
}
.hero__inner { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1000px) { .hero { padding: 64px 0 80px; } .hero__inner { grid-template-columns: 600px 1fr; gap: 48px; } }
.hero__copy { display: grid; gap: 22px; justify-items: start; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px; background: #fff; border: 1px solid #D6E2FF;
  font-size: 13px; font-weight: 500; color: var(--navy);
}
.eyebrow svg { color: var(--blue); width: 16px; height: 16px; }
.hero__title {
  font-family: var(--font-head); font-weight: 400; text-transform: uppercase;
  font-size: clamp(54px, 8.5vw, 96px); line-height: .92; letter-spacing: .005em;
  display: grid; color: var(--navy);
}
.hero__title-accent { color: var(--blue); }
.hero__sub { font-size: 18px; color: var(--muted); max-width: 520px; }

.badges { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.badge { display: inline-flex; align-items: center; gap: 8px; border-radius: 14px; }
.badge--price { background: var(--blue-dark); color: #fff; padding: 10px 20px; align-items: flex-end; font-family: var(--font-head); }
.badge__label { font-size: 20px; color: #BFD4FF; line-height: 1; }
.badge__big { font-size: 44px; line-height: .9; }
.badge--time { background: #fff; border: 1px solid #D6E2FF; padding: 10px 18px; }
.badge--time svg { color: var(--blue); width: 22px; height: 22px; }
.badge__stack { display: grid; font-family: var(--font-head); line-height: 1; }
.badge__stack small { font-size: 16px; color: var(--muted); }
.badge__stack strong { font-size: 26px; font-weight: 400; color: var(--navy); }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 560px) { .cta-row { width: 100%; } .cta-row .btn { width: 100%; } }
.microcopy { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.microcopy svg { color: var(--blue); width: 18px; height: 18px; }

.hero__visual { position: relative; margin-inline: -20px -20px; }
.hero__visual img { width: 100%; }
@media (min-width: 1000px) { .hero__visual { margin: 0; } }

/* ---------- Strip ---------- */
.strip { background: var(--navy); color: #fff; padding: 22px 0; }
.strip__inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 20px; }
@media (min-width: 700px) { .strip__inner { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .strip__inner { display: flex; justify-content: space-between; } }
.strip__item { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; text-transform: uppercase; line-height: 1.25; }
.strip__item svg { width: 28px; height: 28px; color: var(--cyan); }
.strip__item b { display: block; color: #9CC7FF; font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
@media (min-width: 900px) { .section { padding: 96px 0; } }
.section--soft { background: var(--bg-soft); }
.section__head { display: grid; gap: 14px; justify-items: center; text-align: center; max-width: 900px; margin: 0 auto 48px; }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--blue); }
.section__title { font-family: var(--font-head); font-weight: 400; text-transform: uppercase; font-size: clamp(40px, 5.5vw, 64px); line-height: .95; color: var(--navy); }
.section__title--left, .section__sub--left { text-align: left; }
.section__sub { font-size: 17px; color: var(--muted); max-width: 760px; }

/* ---------- Examples ---------- */
.examples { display: grid; gap: 24px; }
@media (min-width: 800px) { .examples { grid-template-columns: repeat(3, 1fr); } }
.example { background: var(--bg-soft); border-radius: var(--radius); overflow: hidden; display: grid; }
.example__visual { aspect-ratio: 822 / 660; overflow: hidden; }
.example__visual img { width: 100%; height: 100%; object-fit: cover; }
.example__info { padding: 20px 24px 24px; display: grid; gap: 8px; }
.example__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tag { display: inline-block; padding: 5px 12px; border-radius: 999px; background: var(--tag, var(--blue)); color: #fff; font-size: 12px; font-weight: 600; }
.example__brand { font-size: 13px; font-weight: 600; color: var(--muted); }
.example__info p { font-size: 13px; color: var(--muted); }
.note { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; font-size: 14px; color: var(--muted); text-align: center; }
.note svg { color: var(--blue); width: 16px; height: 16px; }

/* ---------- Includes ---------- */
.includes { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1000px) { .includes { grid-template-columns: 520px 1fr; gap: 72px; } }
.includes__copy { display: grid; gap: 18px; }
.price-line { display: flex; align-items: baseline; gap: 14px; }
.price-line span { font-size: 20px; font-weight: 500; color: var(--muted); }
.price-line strong { font-family: var(--font-head); font-weight: 400; font-size: 56px; line-height: .9; color: var(--blue); }
.price-note { font-size: 15px; color: var(--muted); }
.includes__list { display: grid; gap: 12px; }
.includes__list li { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 16px; background: #fff; }
.includes__list .ico { flex: none; width: 44px; height: 44px; border-radius: 12px; background: #E3ECFF; display: grid; place-items: center; color: var(--blue); }
.includes__list .ico svg { width: 22px; height: 22px; }
.includes__list div { flex: 1; }
.includes__list strong { display: block; font-size: 16px; font-weight: 600; }
.includes__list p { font-size: 14px; color: var(--muted); line-height: 1.45; }
.includes__list .check { width: 22px; height: 22px; color: var(--green); flex: none; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 24px; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { padding: 32px; border-radius: var(--radius); border: 1px solid var(--line); display: grid; gap: 16px; align-content: start; }
.step__top { display: flex; align-items: center; justify-content: space-between; }
.step__icon { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(180deg, #0B3BD6, #1D5CFF); color: #fff; display: grid; place-items: center; }
.step__icon svg { width: 26px; height: 26px; }
.step__num { font-family: var(--font-head); font-size: 56px; line-height: .9; color: var(--line); }
.step h3 { font-size: 22px; font-weight: 700; }
.step p { font-size: 15px; color: var(--muted); }

/* ---------- CTA + form ---------- */
.cta { position: relative; overflow: hidden; color: #fff; padding: 72px 0;
  background: radial-gradient(70% 90% at 15% 10%, rgba(29,92,255,.6) 0%, rgba(11,27,77,0) 70%), var(--navy); }
@media (min-width: 900px) { .cta { padding: 96px 0; } }
.cta__inner { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1000px) { .cta__inner { grid-template-columns: 1fr 460px; gap: 72px; } }
.cta__copy { display: grid; gap: 22px; justify-items: start; }
.cta__title { font-family: var(--font-head); font-weight: 400; text-transform: uppercase; font-size: clamp(48px, 6.5vw, 80px); line-height: .95; }
.cta__sub { font-size: 18px; color: #BFD4FF; max-width: 520px; }

.form { background: #fff; color: var(--navy); border-radius: var(--radius); padding: 28px; display: grid; gap: 14px; }
@media (min-width: 600px) { .form { padding: 32px; } }
.form__title { font-size: 22px; font-weight: 700; }
.form__sub { font-size: 14px; color: var(--muted); }
.field { display: grid; gap: 6px; font-size: 13px; font-weight: 600; }
.field input {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line); background: #F3F6FC;
  font: 400 15px var(--font-body); color: var(--navy); outline: none; transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder { color: #8A94AD; }
.field input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,92,255,.15); background: #fff; }
.field input.is-invalid { border-color: #E5484D; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { font-size: 14px; min-height: 1.4em; color: var(--muted); }
.form__status.is-ok { color: #1E8E4A; }
.form__status.is-error { color: #C62828; }
.form__status a { color: var(--blue); font-weight: 600; text-decoration: underline; }
.form.is-sending button { opacity: .7; pointer-events: none; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid #E5EBF7; padding: 28px 0; }
.footer__inner { display: grid; gap: 14px; justify-items: center; text-align: center; font-size: 14px; color: var(--muted); }
@media (min-width: 900px) { .footer__inner { grid-template-columns: auto 1fr auto; align-items: center; justify-items: stretch; text-align: center; } }
.footer .logo__word { font-size: 16px; }
.footer a:hover { color: var(--blue); }
.social { display: flex; gap: 18px; justify-content: center; color: var(--navy); }
.social svg { width: 20px; height: 20px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
