/* =====================================================
   KIT GRAFISMO FONÉTICO — style.css
   Design System Premium | Mobile First
   ===================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --blue-brand: #2272ff;
  --orange: #f97316;
  --amber: #f59e0b;
  --green: #059669;
  --red: #dc2626;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-3xl: 1.5rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.12);
}

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #3b82f6, #93c5fd);
  z-index: 9999;
  transition: width .1s linear;
  border-radius: 0 4px 4px 0;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-blue-400 { color: #60a5fa; }
.text-blue-600 { color: #2563eb; }
.line-through { text-decoration: line-through; }
.bg-slate-50 { background-color: var(--slate-50); }
.bg-white { background-color: #fff; }

/* ===== REVEAL ON SCROLL ===== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s cubic-bezier(.25,.46,.45,.94), transform 1.5s cubic-bezier(.25,.46,.45,.94);
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== KEYFRAMES ===== */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes softJump {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-6px) scale(1.01); }
  60% { transform: translateY(-3px) scale(1.005); }
}
@keyframes jumpBtn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pricePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes floatBlock {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(.96); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes upsellEntry {
  from { opacity: 0; transform: translateY(32px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== ANIMATION CLASSES ===== */
.btn-jump { animation: jumpBtn 2.2s ease-in-out infinite; }
.btn-soft-jump { animation: softJump 3s ease-in-out infinite; }
.float-block { animation: floatBlock 3.5s ease-in-out infinite; }
.price-pulse { animation: pricePulse 2s ease-in-out infinite; display: inline-block; }
.price-pulse-orange { animation: pricePulse 2s ease-in-out infinite; display: inline-flex; align-items: baseline; gap: .25rem; }
.price-pulse-green { animation: pricePulse 2s ease-in-out infinite; display: inline-flex; align-items: baseline; gap: .25rem; }
.animate-fadeIn { animation: fadeIn .3s ease-out; }
.animate-upsell { animation: upsellEntry .4s cubic-bezier(.25,.46,.45,.94); }
.animate-slide-down { animation: slideDown .25s ease-out; }

/* ===== HEADER ===== */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.marquee-banner {
  background: #dc2626;
  color: #fff;
  overflow: hidden;
  padding: 6px 0;
  border-bottom: 1px solid #b91c1c;
  user-select: none;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  animation: marquee 22s linear infinite;
}
.marquee-item { display: inline-flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.marquee-dot { color: #fca5a5; margin-left: 1rem; font-weight: 400; }
.icon-amber { color: #fcd34d; }
.header-nav {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(59,130,246,.12);
  transition: padding .3s;
  padding: .75rem 0;
}
.header-nav.scrolled { padding: .5rem 0; box-shadow: 0 1px 8px rgba(0,0,0,.06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  cursor: pointer;
}
.logo-icon {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(59,130,246,.3);
  flex-shrink: 0;
}
.logo-name {
  font-weight: 800;
  font-size: .9rem;
  color: var(--slate-900);
  line-height: 1.2;
}
.logo-sub {
  font-size: .6rem;
  font-weight: 500;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.header-badge {
  display: none;
  align-items: center;
  gap: .375rem;
  background: #f0fdf4;
  color: #047857;
  font-size: .75rem;
  font-weight: 600;
  padding: .375rem .75rem;
  border-radius: 9999px;
  border: 1px solid #a7f3d0;
}
@media (min-width: 640px) { .header-badge { display: flex; } }
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .5rem .875rem;
  font-size: .75rem;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  border-radius: .75rem;
  box-shadow: 0 4px 12px rgba(59,130,246,.25);
  transition: background .2s, box-shadow .2s, transform .15s;
  white-space: nowrap;
}
.btn-header-cta:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59,130,246,.35); }
.btn-header-cta:active { transform: translateY(0); }
@media (min-width: 640px) { .btn-header-cta { padding: .625rem 1.25rem; font-size: .875rem; } }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(239,246,255,.7) 0%, #fff 50%, var(--slate-50) 100%);
}
.hero-blob-1 {
  position: absolute;
  top: 2.5rem; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: rgba(191,219,254,.18);
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none; z-index: 0;
}
.hero-blob-2 {
  position: absolute;
  top: 10rem; right: 2.5rem;
  width: 18rem; height: 18rem;
  background: rgba(147,197,253,.12);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none; z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 56rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 9999px;
  background: rgba(219,234,254,.8);
  border: 1px solid rgba(147,197,253,.8);
  color: #1e40af;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: softJump 4s ease-in-out infinite;
}
@media (min-width: 640px) { .hero-badge { font-size: .875rem; } }
.hero-headline {
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero-headline { font-size: 2.25rem; } }
@media (min-width: 768px) { .hero-headline { font-size: 2.75rem; } }
.headline-gradient {
  background: linear-gradient(90deg, #2563eb, #3b82f6, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline wavy #bfdbfe;
  text-underline-offset: 8px;
}

/* VSL */
.vsl-container { margin: 2rem auto; max-width: 48rem; }
.vsl-wrapper {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 24px 64px rgba(59,130,246,.15);
  background: var(--slate-900);
  cursor: pointer;
  aspect-ratio: 16/9;
}
/* Variante vertical 9:16 */
.vsl-wrapper-vertical {
  aspect-ratio: 9/16;
  max-width: 360px;
  margin: 0 auto;
}
@media (min-width: 640px) { .vsl-wrapper-vertical { max-width: 420px; } }
.vsl-thumbnail {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: transform .5s ease;
}
.vsl-wrapper:hover .vsl-thumbnail { transform: scale(1.04); }
.vsl-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,6,23,.8) 0%, rgba(2,6,23,.28) 50%, transparent 100%);
}
.vsl-top-tag {
  position: absolute;
  top: .75rem; left: .75rem; z-index: 10;
  background: rgba(15,23,42,.8);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .65rem;
  font-weight: 600;
  padding: .375rem .75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; gap: .5rem;
}
.vsl-ping {
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: #f43f5e;
  animation: ping 1.2s ease-out infinite;
  display: inline-block;
}
.vsl-play-area {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem;
}
.vsl-play-btn {
  position: relative;
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(59,130,246,.4);
  transition: transform .3s, background .2s;
}
.vsl-play-btn:hover { background: #60a5fa; transform: scale(1.1); }
.vsl-play-ring {
  position: absolute; inset: -12px;
  border-radius: 50%;
  background: rgba(59,130,246,.25);
  animation: ping 1.8s ease-out infinite;
}
@media (min-width: 640px) { .vsl-play-btn { width: 5rem; height: 5rem; } }
.vsl-play-label { color: #fff; font-size: .75rem; font-weight: 600; letter-spacing: .02em; }
.vsl-bottom-banner {
  position: absolute;
  bottom: .75rem; left: .75rem; right: .75rem; z-index: 10;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border-radius: .875rem;
  padding: .625rem .875rem;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .7rem;
}
.vsl-bb-left { display: flex; align-items: center; gap: .625rem; }
.vsl-bb-icon {
  width: 2rem; height: 2rem;
  border-radius: .5rem;
  background: rgba(59,130,246,.28);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .65rem; color: #bfdbfe;
}
.vsl-bb-title { font-weight: 600; font-size: .7rem; }
.vsl-bb-sub { font-size: .65rem; color: #cbd5e1; }
.vsl-bb-badge {
  display: none;
  align-items: center;
  gap: .375rem;
  color: #6ee7b7;
  font-size: .65rem;
  font-weight: 700;
  background: rgba(5,150,105,.35);
  padding: .25rem .625rem;
  border-radius: .375rem;
  border: 1px solid rgba(110,231,183,.28);
}
@media (min-width: 640px) { .vsl-bb-badge { display: flex; } }
.vsl-disclaimer { font-size: .7rem; color: var(--slate-500); margin-top: .5rem; font-style: italic; }

/* Trust micro badges under CTA */
.trust-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: .75rem;
  font-size: .7rem;
  font-weight: 600;
  color: var(--slate-500);
}
.trust-micro-item { display: flex; align-items: center; gap: .375rem; }
.trust-dot { color: var(--slate-300); }

/* Benefits box */
.benefits-box {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid #dbeafe;
  box-shadow: 0 4px 20px rgba(59,130,246,.06);
  max-width: 40rem;
  margin: 0 auto 2rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .875rem;
  text-align: left;
}
@media (min-width: 640px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--slate-700);
}
.benefit-item svg { flex-shrink: 0; margin-top: 1px; }

/* Hero CTA */
.hero-cta-wrap { max-width: 36rem; margin: 0 auto 3rem; }

/* Hero Mockup */
.hero-mockup { padding-top: 1.5rem; }
.hero-material-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #dbeafe;
  color: #1e40af;
  padding: .375rem 1rem;
  border-radius: 9999px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: 1px solid #bfdbfe;
  margin-bottom: 1.5rem;
}
.hero-photos {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.hero-photo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  flex: 1;
  max-width: 180px;
}
.hero-photo-center { flex: 1.2; max-width: 220px; }
.hero-photo-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  transition: transform .3s;
}
.hero-photo-center .hero-photo-img {
  border-radius: 1.25rem;
  box-shadow: 0 12px 32px rgba(59,130,246,.2);
}
.hero-photo-img:hover { transform: scale(1.03); }
.hero-photo-label {
  font-size: .68rem;
  font-weight: 700;
  color: var(--slate-700);
}
.hero-photo-label-main {
  color: var(--slate-900);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero-material-headline {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--slate-900);
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: .375rem;
  margin-top: 1rem;
}
@media (min-width: 640px) { .hero-material-headline { font-size: 1.5rem; } }
.hero-material-sub {
  font-size: .8rem;
  color: var(--slate-600);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

/* ===== BUTTONS ===== */
.btn-cta-main {
  width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .25rem;
  padding: 1.125rem 1.5rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #f97316, #ea580c, #f59e0b);
  border-radius: 1.25rem;
  box-shadow: 0 12px 32px rgba(249,115,22,.28);
  transition: box-shadow .3s, filter .2s;
  font-size: .95rem;
  cursor: pointer;
}
.btn-cta-main:hover { filter: brightness(1.08); box-shadow: 0 16px 40px rgba(249,115,22,.38); }
.btn-cta-main-text {
  display: flex; align-items: center; gap: .5rem;
  letter-spacing: .02em;
}
.btn-cta-sub { font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.88); }
.btn-cta-orange {
  display: inline-flex; align-items: center; gap: .625rem;
  padding: 1rem 2rem;
  font-size: .95rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, #f97316, #ea580c, #f59e0b);
  border-radius: 1.25rem;
  box-shadow: 0 12px 32px rgba(249,115,22,.28);
  border: 1px solid rgba(249,115,22,.35);
  transition: all .3s;
  cursor: pointer;
}
.btn-cta-orange:hover { filter: brightness(1.08); transform: scale(1.02); box-shadow: 0 16px 40px rgba(249,115,22,.38); }
.btn-cta-orange:active { transform: scale(.98); }
@media (min-width: 640px) { .btn-cta-orange { font-size: 1.05rem; padding: 1.125rem 2.25rem; } }
.cta-center { text-align: center; margin-top: 2.5rem; }

/* ===== SECTION COMMONS ===== */
.section-pad { padding: 4rem 0; }
@media (min-width: 640px) { .section-pad { padding: 6rem 0; } }
.section-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem .875rem;
  border-radius: 9999px;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.badge-blue { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }
.badge-red { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.badge-green { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.badge-orange { background: #ffedd5; color: #9a3412; border: 1px solid #fed7aa; }
.section-title {
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--slate-900);
  margin-bottom: .75rem;
}
@media (min-width: 640px) { .section-title { font-size: 1.875rem; } }
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-subtitle {
  color: var(--slate-600);
  font-size: .875rem;
  line-height: 1.6;
  max-width: 42rem; margin: 0 auto;
}
.section-fine-text {
  font-size: .72rem; color: var(--slate-500);
  margin-top: .375rem;
  font-style: italic;
}

/* ===== INFINITE CAROUSELS ===== */
.section-carousel { padding: 4rem 0; overflow: hidden; }
.carousel-wrapper { overflow: hidden; position: relative; margin-top: 2rem; }
.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.carousel-wrapper::before { left: 0; background: linear-gradient(90deg, var(--slate-50), transparent); }
.section-carousel.bg-white .carousel-wrapper::before { background: linear-gradient(90deg, #fff, transparent); }
.carousel-wrapper::after { right: 0; background: linear-gradient(270deg, var(--slate-50), transparent); }
.section-carousel.bg-white .carousel-wrapper::after { background: linear-gradient(270deg, #fff, transparent); }
.carousel-track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  animation: marquee 30s linear infinite;
  will-change: transform;
  width: max-content;
  cursor: pointer;
}
.carousel-track:hover, .carousel-track:focus-within { animation-play-state: paused; }
.carousel-item {
  flex-shrink: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
  background: #fff;
}
.carousel-item:hover { transform: scale(1.03); box-shadow: var(--shadow-xl); }
/* Atividades: 1:1 */
#carousel-track-atividades .carousel-item { width: 200px; height: 200px; }
#carousel-track-atividades .carousel-item img { width: 100%; height: 100%; object-fit: cover; }
/* Depoimentos: 9:16 */
#carousel-track-depoimentos .carousel-item { width: 160px; aspect-ratio: 9/16; height: auto; }
#carousel-track-depoimentos .carousel-item img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 640px) {
  #carousel-track-atividades .carousel-item { width: 240px; height: 240px; }
  #carousel-track-depoimentos .carousel-item { width: 200px; }
}

/* ===== PROBLEM CARDS ===== */
.cards-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .cards-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards-grid-3 { grid-template-columns: 1fr 1fr 1fr; } }
.problem-card {
  background: #dc2626;
  border-radius: 1.25rem;
  padding: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(220,38,38,.18);
  border: 1px solid rgba(220,38,38,.4);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all .3s;
  animation: softJump 3s ease-in-out infinite;
}
.problem-card:hover { border-color: #fff; box-shadow: 0 12px 32px rgba(220,38,38,.3); }
.problem-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.prob-icon { width: 3rem; height: 3rem; border-radius: .875rem; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; transition: transform .3s; }
.problem-card:hover .prob-icon { transform: scale(1.1); }
.prob-tag { font-size: .68rem; font-weight: 700; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.3); padding: .25rem .625rem; border-radius: .375rem; backdrop-filter: blur(4px); }
.prob-title { font-weight: 800; font-size: 1.05rem; margin-bottom: .5rem; line-height: 1.3; }
.prob-desc { font-size: .78rem; line-height: 1.6; color: #fecaca; }
.prob-footer { margin-top: 1rem; padding-top: .75rem; border-top: 1px solid rgba(255,255,255,.2); font-size: .68rem; font-weight: 600; color: #fecaca; display: flex; align-items: center; gap: .375rem; }
/* Solution teaser (blue) */
.solution-teaser-card {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 1.25rem; padding: 1.5rem; color: #fff;
  box-shadow: 0 12px 32px rgba(59,130,246,.2);
  border: 1px solid rgba(99,102,241,.28);
  display: flex; flex-direction: column; justify-content: space-between;
  animation: softJump 3s ease-in-out infinite;
}
.sol-teaser-icon { width: 3rem; height: 3rem; border-radius: .875rem; background: rgba(255,255,255,.2); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; border: 1px solid rgba(255,255,255,.3); }
.sol-teaser-title { font-weight: 900; font-size: 1.25rem; margin-bottom: .5rem; }
.sol-teaser-desc { font-size: .8rem; color: #bfdbfe; line-height: 1.6; }
.sol-teaser-footer { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.2); font-size: .75rem; font-weight: 600; display: flex; align-items: center; justify-content: space-between; }
.sol-teaser-cta { color: #bfdbfe; font-weight: 700; }

/* ===== SOLUTION CARDS ===== */
.cards-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .cards-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.solution-card {
  background: #2272ff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  color: #fff;
  box-shadow: 0 12px 32px rgba(34,114,255,.2);
  border: 1px solid rgba(99,162,255,.28);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all .3s;
  animation: softJump 3s ease-in-out infinite;
}
.solution-card:hover { border-color: #fff; box-shadow: 0 16px 40px rgba(34,114,255,.4); }
.sol-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.sol-icon { width: 3rem; height: 3rem; border-radius: 1rem; background: rgba(255,255,255,.2); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; transition: all .3s; }
.solution-card:hover .sol-icon { background: rgba(255,255,255,.9); color: #2272ff; }
.sol-highlight { font-size: .65rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: rgba(255,255,255,.2); backdrop-filter: blur(4px); padding: .25rem .625rem; border-radius: .5rem; border: 1px solid rgba(255,255,255,.28); }
.sol-title { font-weight: 900; font-size: 1.05rem; margin-bottom: .5rem; }
.sol-desc { font-size: .78rem; color: #bfdbfe; line-height: 1.6; }
.sol-footer { margin-top: 1.5rem; padding-top: .875rem; border-top: 1px solid rgba(255,255,255,.2); font-size: .68rem; font-weight: 700; display: flex; align-items: center; gap: .5rem; }

/* ===== HOW IT WORKS ===== */
.bg-gradient-how { background: linear-gradient(180deg, var(--slate-50) 0%, #fff 50%, rgba(239,246,255,.4) 100%); }
.how-blob-left {
  position: absolute; top: 50%; left: -8rem; transform: translateY(-50%);
  width: 24rem; height: 24rem;
  background: rgba(219,234,254,.58);
  border-radius: 50%; filter: blur(64px); pointer-events: none; z-index: 0;
}
.how-blob-right {
  position: absolute; top: 33%; right: -8rem;
  width: 24rem; height: 24rem;
  background: rgba(224,231,255,.48);
  border-radius: 50%; filter: blur(64px); pointer-events: none; z-index: 0;
}
.level-tabs {
  display: flex; align-items: center; justify-content: center;
  gap: .375rem; flex-wrap: wrap;
  margin: 2rem 0 2rem;
  padding: 0 .5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.level-tabs::-webkit-scrollbar { display: none; }
.level-tab {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 1.25rem;
  font-size: .78rem; font-weight: 700;
  color: var(--slate-600);
  background: #fff;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.level-tab:hover { color: var(--blue); border-color: #bfdbfe; }
.level-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 6px 20px rgba(59,130,246,.28); transform: scale(1.05); }
.level-num { width: 1.25rem; height: 1.25rem; border-radius: .4rem; font-size: .65rem; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.level-tab.active .level-num { background: #fff; color: var(--blue); }
.level-tab:not(.active) .level-num { background: #eff6ff; color: var(--blue); }
.level-carousel-wrap { position: relative; }
.level-carousel-viewport { overflow: hidden; border-radius: 1.5rem; padding: .25rem; }
.level-carousel-track { display: flex; gap: 1.5rem; transition: transform .5s cubic-bezier(.25,.46,.45,.94); }
.level-slide {
  min-width: 100%;
  background: #fff; border-radius: 1.5rem;
  border: 1px solid rgba(226,232,240,.9);
  box-shadow: 0 16px 48px rgba(15,23,42,.05);
  padding: 1.25rem;
  position: relative; overflow: hidden;
}
@media (min-width: 640px) { .level-slide { padding: 1.75rem 2rem; } }
.level-slide-glow {
  position: absolute; top: 0; right: 0;
  width: 20rem; height: 20rem;
  background: rgba(239,246,255,.58);
  border-radius: 50%; filter: blur(64px); pointer-events: none;
}
.level-slide-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px) { .level-slide-inner { gap: 1.5rem; } }
.level-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15,23,42,.1);
  border: 1px solid rgba(226,232,240,.8);
  background: var(--slate-900);
  cursor: pointer;
}
@media (min-width: 640px) { .level-img-wrap { border-radius: 1.5rem; } }
.level-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.level-img-wrap:hover img { transform: scale(1.03); }
.level-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,6,23,.68), transparent); }
.level-img-badge {
  position: absolute; top: .625rem; left: .625rem;
  background: rgba(37,99,235,.88);
  backdrop-filter: blur(6px);
  color: #fff; font-weight: 900; font-size: .6rem;
  padding: .25rem .625rem; border-radius: .6rem;
  display: flex; align-items: center; gap: .375rem;
}
.level-img-count {
  position: absolute; bottom: .625rem; left: .625rem; right: .625rem;
  display: flex; align-items: center; justify-content: space-between;
}
.level-count-badge {
  background: rgba(2,6,23,.72);
  backdrop-filter: blur(6px);
  color: #fff; font-size: .6rem; font-weight: 600;
  padding: .25rem .625rem; border-radius: .6rem;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; gap: .375rem;
}
.level-content {}
.level-module-tag {
  display: inline-flex; align-items: center; gap: .375rem;
  background: #eff6ff; color: #1d4ed8;
  font-weight: 700; font-size: .65rem;
  padding: .25rem .625rem; border-radius: .5rem;
  border: 1px solid #dbeafe; margin-bottom: .625rem;
}
.level-title {
  font-weight: 900; font-size: .95rem; color: var(--slate-900);
  line-height: 1.3; margin-bottom: .5rem;
}
@media (min-width: 640px) { .level-title { font-size: 1.25rem; } }
@media (min-width: 768px) { .level-title { font-size: 1.5rem; } }
.level-desc {
  font-size: .72rem; color: var(--slate-600); line-height: 1.6;
  margin-bottom: .875rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 640px) { .level-desc { -webkit-line-clamp: unset; } }
.level-topics { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .level-topics { gap: .625rem; } }
.level-topic {
  display: flex; align-items: center; gap: .625rem;
  font-size: .68rem; font-weight: 600; color: var(--slate-700);
  padding: .375rem .5rem; border-radius: .5rem;
  transition: all .2s; cursor: default;
}
@media (min-width: 640px) { .level-topic { font-size: .8rem; } }
.level-topic:hover { color: var(--blue); background: rgba(239,246,255,.5); transform: translateX(2px); }
.level-footer {
  padding-top: .75rem; border-top: 1px solid var(--slate-100);
  display: flex; align-items: center; justify-content: space-between;
  font-size: .68rem; font-weight: 700; color: var(--blue);
}
.level-footer-right { color: var(--slate-400); font-weight: 500; display: none; }
@media (min-width: 640px) { .level-footer-right { display: block; } }
/* Carousel Nav */
.carousel-nav-bar {
  margin-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; padding: 0 .5rem;
}
.carousel-counter { font-size: .78rem; font-weight: 800; color: var(--slate-500); }
.carousel-dots { display: flex; align-items: center; gap: .5rem; }
.carousel-dot {
  height: .625rem; border-radius: 9999px;
  background: var(--slate-200); cursor: pointer;
  transition: all .3s; border: none;
  width: .625rem;
}
.carousel-dot.active { width: 2rem; background: var(--blue); box-shadow: 0 2px 8px rgba(59,130,246,.3); }
.carousel-arrows { display: flex; align-items: center; gap: .5rem; }
.carousel-arrow {
  width: 2.5rem; height: 2.5rem;
  border-radius: .75rem;
  background: #fff; color: var(--slate-700);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  cursor: pointer; transition: all .2s;
}
.carousel-arrow:hover { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 4px 12px rgba(59,130,246,.25); transform: scale(1.05); }
.carousel-arrow:active { transform: scale(.95); }

/* ===== CHILD DEVELOPMENT ===== */
.skills-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .skills-grid { display: grid; } }
@media (min-width: 1024px) { .skills-grid { grid-template-columns: repeat(3, 1fr); } }
.skill-card {
  background: #059669;
  border-radius: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(16,185,129,.35);
  color: #fff;
  display: flex; align-items: flex-start; gap: 1rem;
  box-shadow: 0 8px 24px rgba(5,150,105,.18);
  cursor: pointer; transition: all .5s;
  animation: softJump 3s ease-in-out infinite;
}
.skill-card.active { border: 1px solid #fff; ring: 4px solid rgba(52,211,153,.4); transform: scale(1.05) translateY(-4px); box-shadow: 0 16px 40px rgba(5,150,105,.4); background: #047857; z-index: 1; }
.skill-icon { width: 2.75rem; height: 2.75rem; flex-shrink: 0; border-radius: .875rem; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; }
.skill-title { font-weight: 700; font-size: .95rem; margin-bottom: .25rem; }
.skill-desc { font-size: .75rem; color: #d1fae5; line-height: 1.5; }
.skill-badge { display: inline-block; margin-top: .625rem; font-size: .65rem; font-weight: 800; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.28); padding: .2rem .5rem; border-radius: .375rem; }
/* Mobile Carousel */
.skills-carousel-wrap { display: block; overflow: hidden; border-radius: 1.5rem; padding: .25rem; margin-top: 2rem; }
@media (min-width: 640px) { .skills-carousel-wrap { display: none; } }
.skills-carousel-viewport { overflow: hidden; }
.skills-carousel-track { display: flex; gap: 1rem; transition: transform .5s cubic-bezier(.25,.46,.45,.94); }
.skill-slide { min-width: 100%; background: #059669; border-radius: 1.25rem; padding: 1.5rem; color: #fff; box-shadow: 0 12px 32px rgba(5,150,105,.28); border: 1px solid rgba(255,255,255,.28); display: flex; flex-direction: column; justify-content: space-between; animation: softJump 3s ease-in-out infinite; }
.skill-slide-top { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-bottom: 1rem; }
.skill-slide-badge { font-size: .75rem; font-weight: 800; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.28); padding: .25rem .75rem; border-radius: .375rem; }
.skill-slide-title { font-weight: 900; font-size: 1.1rem; margin-bottom: .5rem; }
.skill-slide-desc { font-size: .8rem; color: #d1fae5; line-height: 1.6; }
.skill-slide-footer { margin-top: 1rem; padding-top: .75rem; border-top: 1px solid rgba(255,255,255,.2); font-size: .7rem; font-weight: 700; color: #a7f3d0; display: flex; align-items: center; justify-content: space-between; }
/* Skills Nav */
.skills-nav-bar { margin-top: 1.5rem; }
@media (min-width: 640px) { .skills-nav-bar { display: none; } }
.skills-status { display: flex; align-items: center; gap: .5rem; font-size: .75rem; font-weight: 700; color: #064e3b; margin-bottom: .75rem; }
.skills-ping { width: .625rem; height: .625rem; border-radius: 50%; background: #10b981; animation: ping 1.2s ease-out infinite; display: inline-block; }
.skills-dots { display: flex; align-items: center; gap: .375rem; }
.skill-dot { height: .5rem; width: .5rem; border-radius: 9999px; background: #a7f3d0; cursor: pointer; border: none; transition: all .3s; }
.skill-dot.active { width: 1.5rem; background: #059669; }
.skills-active-bar {
  background: #059669; color: #fff; border-radius: .875rem; padding: 1rem;
  box-shadow: 0 4px 16px rgba(5,150,105,.2);
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  margin-top: .75rem; border: 1px solid rgba(52,211,153,.35);
}
@media (min-width: 640px) {
  .skills-active-bar { display: flex; margin-top: 1.5rem; border-radius: 1.25rem; padding: 1.25rem; overflow: hidden; }
}
.sab-left { display: flex; align-items: center; gap: .75rem; min-width: 0; }
.sab-icon { width: 2.5rem; height: 2.5rem; border-radius: .75rem; background: rgba(255,255,255,.2); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sab-title { font-weight: 900; font-size: .875rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sab-desc { font-size: .72rem; color: #d1fae5; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sab-arrows { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.sab-arrow { width: 2.25rem; height: 2.25rem; border-radius: .75rem; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.28); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
.sab-arrow:hover { background: #fff; color: #059669; }

/* ===== TARGET AUDIENCE ===== */
.audience-card {
  background: #fff; border-radius: 1.25rem; padding: 1.5rem;
  border: 1px solid rgba(226,232,240,.8);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all .3s;
}
.audience-card:hover { border-color: #93c5fd; box-shadow: 0 12px 32px rgba(59,130,246,.1); transform: translateY(-4px); }
.aud-icon-wrap { width: 3rem; height: 3rem; border-radius: .875rem; background: #eff6ff; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: background .3s; }
.audience-card:hover .aud-icon-wrap { background: var(--blue); }
.audience-card:hover .aud-icon-wrap svg { color: #fff !important; stroke: #fff; }
.aud-title { font-weight: 700; font-size: 1.05rem; color: var(--slate-900); margin-bottom: .25rem; transition: color .3s; }
.audience-card:hover .aud-title { color: var(--blue); }
.aud-subtitle { font-size: .72rem; font-weight: 600; color: var(--blue); margin-bottom: .75rem; }
.aud-desc { font-size: .8rem; color: var(--slate-600); line-height: 1.6; }
.aud-footer { margin-top: 1rem; padding-top: .75rem; border-top: 1px solid var(--slate-100); font-size: .68rem; font-weight: 600; color: #059669; display: flex; align-items: center; gap: .375rem; }

/* ===== TRUST MARQUEE (GREEN) ===== */
.trust-marquee-banner {
  background: #059669; overflow: hidden;
  padding: .75rem 0;
  position: relative; z-index: 1;
}
.trust-marquee-track {
  display: flex; align-items: center; gap: 1.5rem;
  white-space: nowrap; font-size: .72rem; font-weight: 700; color: #fff;
  letter-spacing: .04em;
  animation: marquee 18s linear infinite;
  width: max-content;
}
.trust-item { display: inline-flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.trust-sep { color: rgba(255,255,255,.5); font-weight: 400; }

/* ===== PRICING ===== */
.offer-blob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: rgba(219,234,254,.18); border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0;
}
.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  max-width: 62rem; margin: 2.5rem auto 0;
  position: relative; z-index: 1;
}
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: 5fr 7fr; align-items: stretch; } }
.plan-card {
  background: #fff; border-radius: 1.75rem;
  padding: 1.5rem; border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md); display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  transition: box-shadow .3s;
}
@media (min-width: 640px) { .plan-card { padding: 2rem; } }
.plan-premium {
  background: linear-gradient(180deg, rgba(255,237,213,.68) 0%, #fff 50%, rgba(255,251,235,.4) 100%);
  border: 2px solid #f97316 !important;
  box-shadow: 0 20px 60px rgba(249,115,22,.15) !important;
}
@media (min-width: 1024px) { .plan-premium { transform: scale(1.03); } }
.plan-sticker {
  position: absolute; top: 0; right: 0;
  background: linear-gradient(90deg, #f97316, #f59e0b);
  color: #fff; font-weight: 900; font-size: .7rem;
  padding: .5rem 1rem;
  border-radius: 0 1.5rem 0 1.25rem;
  box-shadow: 0 4px 12px rgba(249,115,22,.28);
  display: flex; align-items: center; gap: .375rem;
  text-transform: uppercase; letter-spacing: .04em;
}
.plan-tier-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--slate-100); color: var(--slate-500);
  padding: .25rem .75rem; border-radius: .375rem; display: inline-block;
  margin-bottom: 1rem;
}
.plan-tier-premium { background: #ffedd5; color: #c2410c; border: 1px solid #fed7aa; }
.plan-name { font-weight: 700; font-size: 1.35rem; color: var(--slate-900); margin-bottom: .375rem; }
@media (min-width: 640px) { .plan-name { font-size: 1.6rem; } }
.plan-subtitle { font-size: .72rem; color: var(--slate-500); margin-bottom: 1.5rem; }
/* Price */
.plan-price-box { border-radius: 1rem; padding: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .plan-price-box { padding: 1.25rem; } }
.plan-price-green { background: #059669; color: #fff; box-shadow: 0 4px 12px rgba(5,150,105,.15); border: 1px solid rgba(16,185,129,.38); }
.plan-price-white { background: #fff; border: 2px solid #fed7aa; }
.plan-price-from { font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.8); }
.plan-price-green .plan-price-from { color: #a7f3d0; }
.plan-price-white .plan-price-from { color: var(--slate-400); }
.plan-price-main { display: flex; align-items: baseline; gap: .25rem; margin-top: .25rem; }
.plan-currency { font-size: .875rem; font-weight: 900; color: #fff; }
.plan-currency-orange { color: #f97316; font-size: 1.1rem; }
.plan-value { font-weight: 900; font-size: 2.75rem; color: #fff; }
@media (min-width: 640px) { .plan-value { font-size: 3.25rem; } }
.plan-value-orange { color: #f97316; font-size: 3.25rem; }
@media (min-width: 640px) { .plan-value-orange { font-size: 3.75rem; } }
.plan-price-sub { font-size: .68rem; font-weight: 500; margin-top: .25rem; color: #a7f3d0; }
.plan-price-sub-orange { color: #c2410c; font-weight: 700; display: flex; align-items: center; gap: .25rem; }
.plan-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: .25rem; }
.plan-off-badge { background: #fee2e2; color: #b91c1c; font-weight: 900; font-size: .65rem; padding: .2rem .625rem; border-radius: 9999px; }
/* Features */
.plan-features { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; font-size: .8rem; color: var(--slate-700); }
@media (min-width: 640px) { .plan-features { font-size: .875rem; } }
.plan-features li { display: flex; align-items: flex-start; gap: .625rem; }
.plan-features li svg { flex-shrink: 0; margin-top: 1px; }
.plan-features-premium li { font-weight: 500; }
.plan-features-premium .feat-bold { font-weight: 700; color: var(--slate-900); }
.feat-icon-bg {
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: #ffedd5; color: #f97316;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
/* CTA Buttons */
.btn-plan-basic {
  width: 100%; padding: .875rem 1.5rem;
  font-weight: 700; color: #fff; background: #059669;
  border-radius: .875rem;
  box-shadow: 0 4px 16px rgba(5,150,105,.22);
  transition: all .3s; cursor: pointer; font-size: .875rem;
  display: flex; align-items: center; justify-content: center;
}
.btn-plan-basic:hover { background: #047857; box-shadow: 0 8px 24px rgba(5,150,105,.32); }
.btn-plan-premium {
  width: 100%; padding: 1rem 1.5rem;
  font-weight: 900; color: #fff;
  background: linear-gradient(90deg, #f97316, #ea580c, #f59e0b);
  border-radius: 1.25rem;
  box-shadow: 0 12px 32px rgba(249,115,22,.28);
  transition: all .3s; cursor: pointer; font-size: .95rem;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
@media (min-width: 640px) { .btn-plan-premium { font-size: 1.05rem; padding: 1.125rem 1.75rem; } }
.btn-plan-premium:hover { filter: brightness(1.08); box-shadow: 0 16px 40px rgba(249,115,22,.38); }
.plan-cta-sub { font-size: .68rem; color: var(--slate-400); text-align: center; margin-top: .625rem; }
.plan-cta-sub-orange { color: #c2410c; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: .375rem; }
/* Security Box */
.security-box {
  margin-top: 2.5rem;
  max-width: 48rem; margin-left: auto; margin-right: auto;
  background: linear-gradient(90deg, #020617, #0c1a3a, #020617);
  border-radius: 1.5rem; padding: 1.5rem 1.75rem;
  border: 1px solid rgba(37,99,235,.55);
  box-shadow: 0 24px 64px rgba(2,6,23,.4);
  position: relative; overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.security-box:hover { border-color: rgba(59,130,246,.75); box-shadow: 0 24px 64px rgba(59,130,246,.2); }
.security-glow-tl { position: absolute; top: -3rem; left: -3rem; width: 12rem; height: 12rem; background: rgba(37,99,235,.18); border-radius: 50%; filter: blur(40px); pointer-events: none; }
.security-glow-br { position: absolute; bottom: -3rem; right: -3rem; width: 12rem; height: 12rem; background: rgba(5,150,105,.12); border-radius: 50%; filter: blur(40px); pointer-events: none; }
.security-items {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 640px) { .security-items { flex-direction: row; justify-content: space-around; } }
.security-item {
  display: flex; align-items: center; gap: .625rem;
  font-size: .78rem; font-weight: 600; color: #fff;
  background: rgba(255,255,255,.05); padding: .625rem 1rem; border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.1);
  transition: all .3s; cursor: default;
}
.security-item:hover { background: rgba(255,255,255,.1); transform: scale(1.04); }

/* ===== FAQ ===== */
.faq-container { max-width: 48rem; }
.accordion { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.accordion-item { background: var(--slate-50); border-radius: 1.25rem; border: 1px solid rgba(226,232,240,.8); overflow: hidden; transition: all .2s; }
.accordion-btn {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 700; font-size: .875rem; color: var(--slate-900);
  cursor: pointer; transition: color .2s;
  background: none; border: none;
}
.accordion-btn:hover { color: var(--blue); }
.accordion-btn.open { color: var(--blue); }
.accordion-icon {
  width: 2rem; height: 2rem; flex-shrink: 0;
  border-radius: 50%; background: #fff; border: 1px solid var(--slate-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-500); transition: all .3s;
}
.accordion-btn.open .accordion-icon { background: #eff6ff; border-color: #bfdbfe; color: var(--blue); transform: rotate(45deg); }
.accordion-answer { display: none; padding: 0 1.5rem 1.5rem; border-top: 1px solid rgba(226,232,240,.55); }
.accordion-answer.open { display: block; animation: slideDown .25s ease-out; }
.accordion-answer p { padding-top: 1rem; font-size: .825rem; color: var(--slate-600); line-height: 1.7; }

/* ===== CTA FINAL (AZUL ESCURO) ===== */
.cta-final-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.5rem;
  background: linear-gradient(135deg, #0f1f5c 0%, #1a3a8f 35%, #1e40af 65%, #0f1f5c 100%);
}
@media (min-width: 640px) { .cta-final-section { padding: 7rem 0 6rem; } }
.cta-final-blob-1 {
  position: absolute; top: -6rem; right: -6rem;
  width: 28rem; height: 28rem;
  background: rgba(99,102,241,.2);
  border-radius: 50%; filter: blur(72px);
  pointer-events: none;
}
.cta-final-blob-2 {
  position: absolute; bottom: -6rem; left: -6rem;
  width: 24rem; height: 24rem;
  background: rgba(59,130,246,.18);
  border-radius: 50%; filter: blur(60px);
  pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 1; }
.cta-final-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.92);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}
.cta-final-headline {
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .cta-final-headline { font-size: 2.75rem; } }
@media (min-width: 768px) { .cta-final-headline { font-size: 3.25rem; } }
.cta-br { display: none; }
@media (min-width: 640px) { .cta-br { display: inline; } }
.cta-final-subtitle {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}
@media (min-width: 640px) { .cta-final-subtitle { font-size: 1rem; } }
.cta-final-btn-wrap {
  max-width: 36rem;
  margin: 0 auto 2rem;
}
.btn-cta-final {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  padding: 1.25rem 2rem;
  border-radius: 1.25rem;
  background: linear-gradient(90deg, #f97316, #ea580c, #f59e0b);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 48px rgba(249,115,22,.35);
  transition: filter .25s, box-shadow .25s;
  cursor: pointer;
  border: none;
}
.btn-cta-final:hover { filter: brightness(1.1); box-shadow: 0 20px 56px rgba(249,115,22,.5); }
.btn-cta-final-text {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
@media (min-width: 640px) { .btn-cta-final-text { font-size: 1.125rem; } }
.btn-cta-final-sub {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
}
.btn-cta-final-sub strong { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
/* Trust bar CTA final */
.cta-final-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 600;
}
.cta-trust-item { display: flex; align-items: center; gap: .4rem; }
.cta-trust-sep { color: rgba(255,255,255,.3); }

/* ===== FOOTER ===== */
.footer { background: var(--slate-950); color: #94a3b8; padding: 3rem 0; border-top: 1px solid var(--slate-900); font-size: .75rem; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--slate-900); }
@media (min-width: 768px) { .footer-top { flex-direction: row; justify-content: space-between; } }
.footer-logo { display: flex; align-items: center; gap: .5rem; }
.footer-logo-icon { width: 2rem; height: 2rem; border-radius: .5rem; background: var(--blue); display: flex; align-items: center; justify-content: center; color: #fff; }
.footer-logo-name { font-weight: 700; font-size: .95rem; color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; font-weight: 500; }
.footer-link { color: #94a3b8; background: none; border: none; cursor: pointer; transition: color .2s; }
.footer-link:hover { color: #fff; }
.footer-link-contact { display: flex; align-items: center; gap: .375rem; }
.footer-bottom { padding-top: 2rem; text-align: center; font-size: .7rem; color: #475569; display: flex; flex-direction: column; gap: .75rem; }
.footer-disclaimer { max-width: 48rem; margin: 0 auto; line-height: 1.7; }
.footer-copy { display: flex; align-items: center; justify-content: center; gap: .25rem; }

/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: #fff; padding: .75rem 1rem;
  border-top: 1px solid rgba(226,232,240,.8);
  box-shadow: 0 -8px 32px rgba(0,0,0,.08);
  display: flex;
}
@media (min-width: 768px) { .mobile-sticky-bar { display: none; } }
.btn-sticky {
  width: 100%; padding: .875rem 1.25rem;
  font-weight: 900; font-size: .9rem; color: #fff;
  background: linear-gradient(90deg, #f97316, #ea580c, #f59e0b);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  box-shadow: 0 8px 24px rgba(249,115,22,.3);
  cursor: pointer;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed; bottom: 5.5rem; right: 1.25rem; z-index: 80;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
}
@media (min-width: 768px) { .whatsapp-btn { bottom: 2rem; } }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,.5); }
.whatsapp-pulse {
  position: absolute; inset: -6px; border-radius: 50%;
  background: rgba(37,211,102,.3);
  animation: ping 2s ease-out infinite;
}

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(2,6,23,.75);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  overflow-y: auto;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  position: relative; background: #fff;
  border-radius: 1.75rem; padding: 1.5rem;
  box-shadow: 0 40px 100px rgba(0,0,0,.25);
  border: 1px solid var(--slate-200);
  width: 100%; max-width: 32rem;
  animation: upsellEntry .4s cubic-bezier(.25,.46,.45,.94);
  max-height: 90vh; overflow-y: auto;
  margin: auto;
}
@media (min-width: 640px) { .modal-box { padding: 2rem; } }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--slate-100); color: var(--slate-500);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s; z-index: 10;
  border: none;
}
.modal-close:hover { background: var(--slate-200); }

/* VSL Modal */
.vsl-modal-box { max-width: 56rem; background: var(--slate-950); border-color: rgba(255,255,255,.1); padding: 1rem; }
@media (min-width: 640px) { .vsl-modal-box { padding: 1.25rem; } }
.vsl-modal-box .modal-close { background: rgba(255,255,255,.1); color: #fff; }
.vsl-modal-box .modal-close:hover { background: rgba(255,255,255,.2); }
/* Variante vertical 9:16 do modal */
.vsl-modal-vertical {
  max-width: 380px;
  width: 92vw;
  padding: .75rem !important;
}
@media (min-width: 480px) { .vsl-modal-vertical { max-width: 420px; } }
.vsl-video-wrap { aspect-ratio: 16/9; border-radius: 1rem; overflow: hidden; background: #000; }
.vsl-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
/* Vídeo vertical 9:16 */
.vsl-video-vertical {
  aspect-ratio: 9/16 !important;
  max-height: 80vh;
}
.vsl-video-vertical video { width: 100%; height: 100%; object-fit: contain; }

/* Lightbox Modal */
.lightbox-box {
  position: relative; max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img { max-width: 100%; max-height: 85vh; border-radius: 1rem; box-shadow: 0 40px 100px rgba(0,0,0,.4); object-fit: contain; }
.lightbox-box .modal-close { top: -2.5rem; right: 0; background: rgba(255,255,255,.15); color: #fff; }
.lightbox-box .modal-close:hover { background: rgba(255,255,255,.25); }

/* Upsell Modal */
.upsell-modal-box { max-width: 30rem; }
.upsell-header { text-align: center; margin-bottom: 1.25rem; }
.upsell-top-badge {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .25rem .875rem; border-radius: 9999px;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  color: #fff; font-weight: 900; font-size: .65rem; text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .625rem;
}
.upsell-headline { font-weight: 900; font-size: 1.5rem; color: var(--slate-900); line-height: 1.2; margin-bottom: .375rem; }
.upsell-sub { font-size: .78rem; color: var(--slate-600); font-weight: 500; line-height: 1.5; }
.upsell-card { background: linear-gradient(180deg, rgba(255,237,213,.88), rgba(255,251,235,.4), #fff); border-radius: 1.25rem; padding: 1.25rem; border: 2px solid #f97316; box-shadow: 0 16px 40px rgba(249,115,22,.1); margin-bottom: 1.25rem; }
.upsell-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; margin-bottom: .75rem; }
.upsell-card-badge { display: inline-flex; align-items: center; gap: .375rem; font-size: .65rem; font-weight: 900; color: #c2410c; background: #ffedd5; padding: .2rem .625rem; border-radius: .375rem; border: 1px solid #fed7aa; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .375rem; }
.upsell-card-title { font-weight: 900; font-size: 1.05rem; color: var(--slate-900); }
.upsell-price-box { background: #fff; border: 1px solid #fed7aa; border-radius: .875rem; padding: .875rem 1rem; display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.upsell-price-from { font-size: .72rem; color: var(--slate-400); font-weight: 500; }
.upsell-price { display: flex; align-items: baseline; gap: .25rem; margin-top: .25rem; }
.upsell-currency { font-size: .875rem; font-weight: 900; color: #f97316; }
.upsell-value { font-weight: 900; font-size: 2.25rem; color: #f97316; }
.upsell-price-right { text-align: right; }
.upsell-vitalicio { background: #d1fae5; color: #065f46; font-weight: 900; font-size: .65rem; padding: .2rem .625rem; border-radius: 9999px; text-transform: uppercase; letter-spacing: .04em; border: 1px solid #a7f3d0; }
.upsell-payment { font-size: .65rem; color: var(--slate-500); margin-top: .25rem; font-weight: 600; }
.upsell-benefits { display: flex; flex-direction: column; gap: .625rem; font-size: .8rem; color: var(--slate-700); font-weight: 500; }
.upsell-benefits li { display: flex; align-items: flex-start; gap: .625rem; }
.upsell-bold { font-weight: 700; color: var(--slate-900); }
.upsell-check { width: 1rem; height: 1rem; border-radius: 50%; background: #d1fae5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.upsell-actions { display: flex; flex-direction: column; gap: .75rem; text-align: center; }
.upsell-trust { font-size: .7rem; font-weight: 600; color: var(--slate-500); display: flex; align-items: center; justify-content: center; gap: .375rem; }
.upsell-decline-btn { font-size: .8rem; font-weight: 700; color: var(--slate-500); cursor: pointer; text-decoration: underline; text-underline-offset: 4px; transition: color .2s; }
.upsell-decline-btn:hover { color: var(--slate-800); }

/* Legal Modal */
.legal-modal-box { max-width: 36rem; }
.legal-title { font-weight: 800; font-size: 1.35rem; color: var(--slate-900); margin-bottom: 1rem; padding-right: 2.5rem; }
.legal-body { font-size: .8rem; color: var(--slate-600); line-height: 1.8; max-height: 60vh; overflow-y: auto; }
.legal-body h4 { font-weight: 700; color: var(--slate-800); margin: 1rem 0 .5rem; }

/* ===== UTILITY ===== */
.bg-gradient-how { position: relative; overflow: hidden; }
