:root {
  --brand: #2f518e;
  --brand-dark: #0e1533;
  --brand-mid: #1a2554;
  --brand-soft: #eef2ff;
  --ink: #10182b;
  --muted: #4b5568;
  --soft: #6b7280;
  --line: #e5e7eb;
  --surface: #f4f6fb;
  --wa: #16a34a;
  --gold: #f5b942;
  --white: #fff;
  --shadow: 0 24px 60px rgba(14, 21, 51, 0.16);
  --radius: 1.35rem;
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.2rem;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 80;
  background: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 0.6rem;
}

.wrap {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 21, 51, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.topbar.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  color: var(--white);
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.nav a:hover {
  color: #fff;
}

.menu-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  gap: 5px;
}

.menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
}

.hero {
  position: relative;
  padding: 2.2rem 0 4.5rem;
  color: #fff;
  background:
    radial-gradient(720px 380px at 90% 10%, rgba(47, 81, 142, 0.55), transparent 55%),
    radial-gradient(520px 280px at 8% 90%, rgba(245, 185, 66, 0.12), transparent 50%),
    linear-gradient(180deg, #0b1024 0%, #121a42 72%, #f4f6fb 100%);
}

.hero-grid {
  display: grid;
  gap: 2.2rem;
  align-items: center;
}

.kicker {
  display: inline-flex;
  background: rgba(245, 185, 66, 0.16);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  text-wrap: balance;
}

.lead {
  margin-top: 1rem;
  max-width: 46ch;
  font-size: 1.05rem;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.74);
}

.hero .lead strong {
  color: #fff;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.8rem 1.25rem;
  border-radius: 0.95rem;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-app {
  background: var(--gold);
  color: #2a1d00;
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.28);
}

.btn-navy {
  background: var(--brand-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: inherit;
  border: 1.5px solid currentColor;
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.price-teasers {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.teaser {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.teaser b {
  display: block;
  font-size: 0.95rem;
}

.teaser span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.teaser em {
  font-style: normal;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
}

.hero-art {
  position: relative;
  min-height: 340px;
}

.hero-art img.cnh {
  width: min(340px, 88%);
  mix-blend-mode: lighten;
  filter: contrast(1.04);
}

.hero-art img.car {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: min(230px, 58%);
  mix-blend-mode: lighten;
}

.float-card {
  position: relative;
  z-index: 2;
  margin-top: -1.2rem;
  background: #fff;
  color: var(--ink);
  border-radius: 1.2rem;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  max-width: 380px;
}

.float-card small {
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.float-card strong {
  display: block;
  margin: 0.2rem 0 0.55rem;
}

.float-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.38rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}

.float-card b {
  color: var(--brand);
  font-size: 0.78rem;
}

.section {
  padding: 4.2rem 0;
}

.section-tight {
  padding-top: 0;
}

.center {
  text-align: center;
}

.center .lead,
.center-lead,
.section .lead {
  margin-inline: auto;
  color: var(--muted);
}

.eyebrow {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
}

h3 {
  font-size: 1.15rem;
  color: var(--brand-dark);
}

.muted {
  color: var(--muted);
}

.plan-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  padding: 1.5rem 1.4rem 1.3rem;
}

.plan-card.is-featured {
  background: linear-gradient(180deg, #17204a 0%, #0e1533 100%);
  border-color: #2f518e;
  color: #fff;
  box-shadow: 0 28px 70px rgba(14, 21, 51, 0.28);
}

.plan-card > p {
  color: var(--muted);
  margin-top: 0.5rem;
}

.plan-card.is-featured h3,
.plan-card.is-featured .installment {
  color: #fff;
}

.plan-card.is-featured > p,
.plan-card.is-featured .installment small,
.plan-card.is-featured li {
  color: rgba(255, 255, 255, 0.78);
}

.badge {
  position: absolute;
  top: -0.75rem;
  left: 1.15rem;
  background: var(--gold);
  color: #2a1d00;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.installment {
  margin: 1rem 0 0.3rem;
  font-size: clamp(2rem, 4vw, 2.4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand-dark);
}

.installment small {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--soft);
}

.checks {
  margin: 0.8rem 0 0.4rem;
}

.checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.48rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.plan-card.is-featured .checks li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.checks i {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: #dcfce7;
  color: #166534;
}

.plan-card.is-featured .checks i {
  background: rgba(245, 185, 66, 0.2);
  color: var(--gold);
}

.checks svg {
  display: block;
  width: 18px;
  height: 18px;
}

.plan-card .actions {
  margin-top: auto;
  padding-top: 1.15rem;
}

.plan-card.is-featured .btn-navy {
  background: var(--gold);
  color: #2a1d00;
}

.plan-card.is-featured .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.compare {
  overflow: auto;
  margin-top: 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
}

.compare table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.compare th,
.compare td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare th {
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.92rem;
}

.compare td {
  color: var(--muted);
}

.compare tr:last-child td {
  border-bottom: 0;
}

.compare .yes {
  color: #166534;
  font-weight: 800;
}

.compare .no {
  color: #9ca3af;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.step em {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-style: normal;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.card p {
  color: var(--muted);
  margin-top: 0.45rem;
}

.warn {
  background: #fff7e6;
  border: 1px solid #f3d28a;
  border-radius: var(--radius);
  padding: 1.3rem;
}

.warn strong {
  color: #8a5a00;
}

.warn p {
  color: #6b5420;
  margin-top: 0.4rem;
}

.faq {
  max-width: 800px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
}

.faq details + details {
  margin-top: 0.7rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--brand-dark);
}

.faq p {
  color: var(--muted);
  margin-top: 0.5rem;
}

.cta-band {
  background: linear-gradient(135deg, #121a42, #2f518e);
  color: #fff;
  border-radius: 28px;
  padding: 2.4rem 1.4rem;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0.7rem auto 1.3rem;
  max-width: 44ch;
}

.cta-band .btn-navy {
  background: var(--gold);
  color: #2a1d00;
}

.footer {
  padding: 3rem 0 7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer strong {
  color: var(--brand-dark);
}

.footer a:hover {
  color: var(--brand);
}

.fine {
  color: var(--soft);
  margin-top: 0.45rem;
}

.sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 40;
  display: flex;
  gap: 0.6rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
}

.sticky-cta .btn {
  flex: 1;
  min-height: 46px;
}

.legal {
  max-width: 760px;
}

.legal h1 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  color: var(--brand-dark);
}

.legal h2 {
  margin-top: 1.8rem;
  font-size: 1.25rem;
}

.legal p,
.legal li {
  color: var(--muted);
  margin-top: 0.7rem;
}

.legal ul {
  padding-left: 1.1rem;
  list-style: disc;
}

.legal-page .topbar {
  background: #0e1533;
}

.legal-page .brand {
  color: #fff;
}

@media (min-width: 800px) {
  .nav,
  .md-flex {
    display: flex;
  }

  .menu-btn,
  .sticky-cta {
    display: none;
  }

  .hero {
    padding: 1.2rem 0 5.5rem;
  }

  .hero-grid,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .price-teasers {
    grid-template-columns: 1fr 1fr;
  }

  .plan-grid,
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer {
    padding-bottom: 3rem;
  }
}

@media (max-width: 799px) {
  .topbar .btn-app {
    display: none;
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 74px;
    background: #121a42;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem;
  }

  .hero-art {
    min-height: 280px;
  }

  .teaser {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 1.85rem;
  }
}

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

  .btn {
    transition: none;
  }
}
