:root {
  --blue-dark: #083b8f;
  --blue: #0f5bd3;
  --blue-light: #eaf3ff;
  --blue-soft: #cfe4ff;
  --yellow: #f7c62f;
  --text: #12304f;
  --text-soft: #4f6b88;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 59, 143, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15,91,211,0.10), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

a { text-decoration: none; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(8,59,143,0.08);
}
.topbar-inner,
.footer-inner,
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-inner { padding: 18px 0; }
.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow), #ffe18c);
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.brand-title {
  font-weight: 800;
  color: var(--blue-dark);
  font-size: 1.25rem;
}
.brand-subtitle,
.footer-sub,
.footer-note {
  color: var(--text-soft);
}
.top-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--white);
  color: #1a6e3f;
  border: 1px solid rgba(26,110,63,0.12);
  box-shadow: var(--shadow);
  font-weight: 700;
}
.wa-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #27c267;
  color: var(--white);
}

.hero {
  padding: 56px 0 26px;
}
.hero-grid,
.section-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}
.eyebrow,
.section-tag {
  display: inline-block;
  background: rgba(15,91,211,0.08);
  color: var(--blue-dark);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero h1,
.why h2,
.cta-band h2 {
  margin: 0 0 16px;
  line-height: 1.02;
  color: var(--blue-dark);
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
}
.hero h1 span { color: var(--blue); }
.hero-text {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 640px;
}
.price-card,
.lead-card,
.visual-card,
.highlight-card {
  background: var(--white);
  border: 1px solid rgba(15,91,211,0.10);
  box-shadow: var(--shadow);
}
.price-card {
  margin: 26px 0;
  padding: 24px;
  border-radius: var(--radius);
  max-width: 420px;
}
.price-label {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.price-value {
  color: var(--blue-dark);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
}
.price-value span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
}
.price-note {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.9rem;
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.benefits-list li,
.highlight-card,
.visual-checks span {
  position: relative;
}
.benefits-list li {
  padding-left: 34px;
  font-weight: 700;
}
.benefits-list li::before,
.highlight-card::before,
.visual-checks span::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #19a65c;
  font-weight: 900;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(15,91,211,0.22);
}
.btn-secondary {
  background: rgba(15,91,211,0.08);
  color: var(--blue-dark);
}
.btn-full { width: 100%; }

.lead-card {
  border-radius: 28px;
  overflow: hidden;
}
.lead-card-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 22px 24px;
  font-size: 1.35rem;
  font-weight: 800;
}
.lead-form {
  padding: 24px;
  display: grid;
  gap: 16px;
}
.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--blue-dark);
}
.lead-form input,
.lead-form select {
  width: 100%;
  border: 1px solid #c8d9f3;
  background: #f8fbff;
  padding: 14px 16px;
  border-radius: 14px;
  font: inherit;
  color: var(--text);
}
.lead-form small {
  color: var(--text-soft);
  text-align: center;
  line-height: 1.5;
}

.highlights {
  padding: 12px 0 30px;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.highlight-card {
  border-radius: 20px;
  padding: 22px 24px 22px 52px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue-dark);
}
.highlight-card::before {
  left: 22px;
  top: 22px;
}

.why {
  padding: 26px 0 30px;
}
.why h2,
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.why p,
.cta-band p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1.04rem;
}
.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15,91,211,0.08);
  border-radius: 20px;
  padding: 20px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(25,166,92,0.12);
  color: #19a65c;
  font-weight: 900;
  flex: 0 0 40px;
}
.feature-item h3 {
  margin: 0 0 6px;
  color: var(--blue-dark);
}
.feature-item p { margin: 0; }
.visual-card {
  min-height: 100%;
  border-radius: 30px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(15,91,211,0.12), rgba(255,255,255,0.96)),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
}
.visual-badge {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-weight: 900;
  margin-bottom: 18px;
}
.visual-title {
  font-size: 2rem;
  color: var(--blue-dark);
  font-weight: 800;
  margin-bottom: 12px;
}
.visual-copy {
  color: var(--text-soft);
  margin-bottom: 24px;
}
.visual-checks {
  display: grid;
  gap: 14px;
}
.visual-checks span {
  display: block;
  padding-left: 30px;
  font-weight: 700;
}

.cta-band {
  padding: 30px 0 56px;
}
.cta-band-inner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 32px;
  padding: 34px;
  color: var(--white);
  box-shadow: var(--shadow);
}
.cta-band .section-tag {
  background: rgba(255,255,255,0.16);
  color: var(--white);
}
.cta-band h2,
.cta-band p { color: var(--white); }
.cta-band p { opacity: 0.9; }

.footer {
  padding: 0 0 28px;
}
.footer-inner {
  padding-top: 16px;
  border-top: 1px solid rgba(8,59,143,0.08);
}
.footer-brand { font-size: 1.1rem; }

@media (max-width: 960px) {
  .hero-grid,
  .section-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }
  .cta-band-inner,
  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 20px, 1120px); }
  .hero { padding-top: 34px; }
  .lead-card-header,
  .lead-form,
  .visual-card,
  .price-card,
  .cta-band-inner { padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: 2rem; }
  .price-value { font-size: 2.5rem; }
  .brand-title { font-size: 1rem; }
  .top-whatsapp { width: 100%; justify-content: center; }
}
