:root {
  --bg: #06142e;
  --bg-2: #071b3d;
  --surface: #0b214a;
  --surface-2: #0e2e65;
  --text: #f7fbff;
  --muted: #b9c7d9;
  --blue: #0c83d8;
  --blue-2: #1aa7ff;
  --cyan: #50d8ff;
  --gold: #ffbf3f;
  --success: #4ade80;
  --dark: #030711;
  --white: #ffffff;
  --border: rgba(255,255,255,.12);
  --shadow: 0 30px 80px rgba(0,0,0,.32);
  --radius: 28px;
  --container: 1180px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(26,167,255,.28), transparent 34rem),
    radial-gradient(circle at 80% 18%, rgba(255,191,63,.16), transparent 28rem),
    linear-gradient(180deg, #06142e 0%, #030711 72%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 70%);
  z-index: -1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.skip-link { position: absolute; left: 16px; top: -100px; z-index: 99; background: var(--white); color: var(--dark); padding: 10px 14px; border-radius: 999px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.site-header.is-scrolled {
  background: rgba(3,7,17,.78);
  border-bottom-color: var(--border);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 82px; }
.brand-logo { width: 190px; height: auto; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { color: var(--muted); padding: 10px 14px; border-radius: 999px; font-weight: 700; transition: var(--transition); }
.nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav .nav-cta { background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: var(--white); box-shadow: 0 14px 34px rgba(26,167,255,.26); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,.06); color: var(--white); }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--white); border-radius: 2px; transition: var(--transition); }

.hero { min-height: 100vh; display: grid; align-items: center; padding-top: 150px; padding-bottom: 92px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: center; }
.hero-glow { position: absolute; filter: blur(16px); opacity: .7; pointer-events: none; }
.hero-glow-one { width: 380px; height: 380px; background: radial-gradient(circle, rgba(26,167,255,.32), transparent 66%); top: 90px; left: -120px; }
.hero-glow-two { width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,191,63,.24), transparent 66%); right: 2%; bottom: 16%; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; color: var(--cyan); text-transform: uppercase; font-size: .78rem; letter-spacing: .16em; font-weight: 900; margin: 0 0 16px; }
.eyebrow::before { content: ""; width: 34px; height: 2px; border-radius: 2px; background: var(--cyan); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.65rem, 6vw, 6.3rem); line-height: .92; letter-spacing: -.07em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 4.2rem); line-height: .98; letter-spacing: -.05em; margin-bottom: 18px; }
h3 { line-height: 1.1; }
.hero-text { color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.28rem); max-width: 620px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 900; transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition); cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: var(--white); box-shadow: 0 20px 45px rgba(26,167,255,.28); }
.btn-secondary { background: rgba(255,255,255,.08); border-color: var(--border); color: var(--white); }
.btn-ghost { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.22); color: var(--white); }
.btn-ghost.dark { background: rgba(3,7,17,.74); }
.btn.full { width: 100%; }
.trust-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 650px; }
.trust-bar div { padding: 18px; border: 1px solid var(--border); border-radius: 22px; background: rgba(255,255,255,.055); backdrop-filter: blur(12px); }
.trust-bar strong { display: block; font-size: 1rem; color: var(--white); }
.trust-bar span { display: block; color: var(--muted); font-size: .88rem; }
.hero-panel { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero-card-main { width: min(455px, 100%); border: 1px solid var(--border); border-radius: 38px; padding: 18px; background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.045)); box-shadow: var(--shadow); backdrop-filter: blur(20px); position: relative; overflow: hidden; }
.hero-card-main::before { content: ""; position: absolute; inset: -80px -20px auto auto; width: 220px; height: 220px; border-radius: 50%; background: rgba(80,216,255,.26); filter: blur(38px); }
.hero-card-main img { min-height: 285px; width: 100%; object-fit: contain; border-radius: 26px; background: linear-gradient(135deg, rgba(12,131,216,.16), rgba(255,255,255,.03)); padding: 18px; }
.badge { position: absolute; top: 28px; left: 28px; z-index: 2; font-size: .72rem; font-weight: 900; letter-spacing: .12em; color: var(--dark); background: var(--gold); padding: 8px 12px; border-radius: 999px; }
.hero-card-content { padding: 22px 12px 6px; }
.hero-card-content span { color: var(--cyan); font-weight: 800; font-size: .86rem; }
.hero-card-content h2 { font-size: 2.2rem; margin: 4px 0 8px; }
.hero-card-content p { color: var(--muted); margin-bottom: 14px; }
.hero-card-content strong { font-size: 1.7rem; color: var(--gold); }
.floating-card { position: absolute; display: flex; align-items: center; gap: 12px; max-width: 245px; background: rgba(255,255,255,.92); color: var(--dark); border-radius: 20px; padding: 14px 16px; box-shadow: 0 20px 55px rgba(0,0,0,.26); font-weight: 800; }
.floating-card span { font-size: 1.5rem; }
.floating-card p { margin: 0; line-height: 1.25; }
.floating-card-one { top: 72px; right: 0; }
.floating-card-two { bottom: 56px; left: 0; }

.strip { padding: 26px 0; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.06); backdrop-filter: blur(16px); }
.strip-grid div { padding: 22px 24px; border-right: 1px solid var(--border); }
.strip-grid div:last-child { border-right: 0; }
.strip-grid strong { display: block; font-size: 1.03rem; }
.strip-grid span { color: var(--muted); font-size: .92rem; }

.section-heading { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.section-heading.left { margin-left: 0; text-align: left; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.plans { background: linear-gradient(180deg, transparent, rgba(7,27,61,.58) 44%, transparent); }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.plan-card { min-height: 100%; display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 30px; padding: 24px; background: linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045)); box-shadow: 0 18px 60px rgba(0,0,0,.18); position: relative; overflow: hidden; }
.plan-card::before { content: ""; position: absolute; inset: auto -50px -80px auto; width: 180px; height: 180px; border-radius: 50%; background: rgba(26,167,255,.2); filter: blur(38px); }
.plan-card.featured { border-color: rgba(80,216,255,.55); transform: translateY(-14px); box-shadow: 0 32px 95px rgba(26,167,255,.2); }
.plan-card.featured::after { content: "Recomendado"; position: absolute; top: 18px; right: -38px; transform: rotate(35deg); background: var(--gold); color: var(--dark); padding: 7px 44px; font-size: .72rem; font-weight: 1000; }
.plan-label { display: inline-flex; width: fit-content; font-size: .75rem; font-weight: 900; color: var(--cyan); background: rgba(80,216,255,.12); border: 1px solid rgba(80,216,255,.18); border-radius: 999px; padding: 7px 10px; margin-bottom: 16px; }
.plan-card h3 { font-size: 1.55rem; margin-bottom: 10px; }
.plan-desc { color: var(--muted); min-height: 76px; margin-bottom: 18px; }
.price { font-size: 3.6rem; line-height: .95; font-weight: 1000; letter-spacing: -.06em; margin-bottom: 22px; }
.price span { font-size: 1.05rem; color: var(--muted); letter-spacing: 0; margin-right: 4px; }
.price small { font-size: .92rem; color: var(--muted); letter-spacing: 0; font-weight: 800; }
.check-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; color: #eaf4ff; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list li::before { content: "✓"; flex: 0 0 22px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(74,222,128,.16); color: var(--success); font-weight: 1000; font-size: .8rem; margin-top: 1px; }
.check-list.muted-icons li::before { background: rgba(80,216,255,.13); color: var(--cyan); }
.plan-button { margin-top: auto; }
.economy .plan-label { color: var(--gold); border-color: rgba(255,191,63,.25); background: rgba(255,191,63,.11); }

.experience-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 48px; align-items: center; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card { border: 1px solid var(--border); border-radius: 26px; padding: 26px; background: rgba(255,255,255,.065); min-height: 220px; }
.feature-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; font-size: 1.8rem; background: linear-gradient(135deg, rgba(26,167,255,.24), rgba(255,255,255,.08)); margin-bottom: 20px; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); margin-bottom: 0; }

.schedule { background: linear-gradient(135deg, rgba(12,131,216,.13), rgba(255,255,255,.02)); }
.schedule-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; align-items: stretch; }
.schedule-card, .notice-card { border: 1px solid var(--border); border-radius: 34px; padding: 34px; background: rgba(255,255,255,.075); box-shadow: 0 20px 70px rgba(0,0,0,.18); }
.hours-list { display: grid; gap: 12px; margin-top: 24px; }
.hours-list div { display: grid; grid-template-columns: 170px 1fr; gap: 14px; align-items: center; padding: 16px 18px; border-radius: 18px; background: rgba(3,7,17,.36); border: 1px solid rgba(255,255,255,.08); }
.hours-list span { color: var(--cyan); font-weight: 1000; text-transform: uppercase; letter-spacing: .05em; }
.hours-list strong { text-align: right; }
.notice-card { display: flex; flex-direction: column; justify-content: center; background: linear-gradient(180deg, rgba(255,191,63,.14), rgba(255,255,255,.055)); }
.notice-card span { font-size: 2.2rem; margin-bottom: 16px; }
.notice-card h3 { font-size: 1.8rem; }
.notice-card p { color: var(--muted); }

.transformation-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: end; padding: 42px; border: 1px solid rgba(80,216,255,.2); border-radius: 34px; background: linear-gradient(135deg, rgba(26,167,255,.22), rgba(255,255,255,.055)); box-shadow: var(--shadow); }
.transformation-grid p:last-child { color: var(--muted); font-size: 1.15rem; margin-bottom: 0; }

.location-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.map-card { min-height: 390px; border-radius: 36px; padding: 42px; background:
  linear-gradient(135deg, rgba(3,7,17,.25), rgba(3,7,17,.88)),
  radial-gradient(circle at 20% 25%, rgba(80,216,255,.34), transparent 10rem),
  linear-gradient(45deg, rgba(255,255,255,.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.05) 50%, rgba(255,255,255,.05) 75%, transparent 75%, transparent);
  background-size: auto, auto, 42px 42px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: end;
  box-shadow: var(--shadow);
}
.map-pin { width: 76px; height: 76px; display: grid; place-items: center; border-radius: 24px; background: var(--white); color: var(--dark); font-size: 2rem; margin-bottom: auto; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.map-card h2 { font-size: clamp(1.8rem, 3vw, 3.3rem); }
.map-card p { color: var(--muted); }
.contact-mini { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.contact-mini a { padding: 12px 16px; border: 1px solid var(--border); border-radius: 999px; color: var(--white); background: rgba(255,255,255,.06); font-weight: 900; }

.faq-list { max-width: 850px; margin: 0 auto; display: grid; gap: 14px; }
details { border: 1px solid var(--border); border-radius: 22px; padding: 0 22px; background: rgba(255,255,255,.06); overflow: hidden; }
summary { cursor: pointer; padding: 20px 0; font-weight: 950; font-size: 1.08rem; }
details p { color: var(--muted); margin-bottom: 20px; }

.enroll { background: linear-gradient(180deg, rgba(7,27,61,.2), rgba(12,131,216,.16)); }
.enroll-grid { display: grid; grid-template-columns: .9fr .78fr; gap: 46px; align-items: center; }
.enroll-copy p { color: var(--muted); font-size: 1.08rem; }
.enroll-note { border: 1px solid rgba(255,191,63,.28); background: rgba(255,191,63,.1); border-radius: 22px; padding: 18px; color: #fff1c6; }
.lead-form { border: 1px solid var(--border); border-radius: 32px; padding: 28px; background: rgba(255,255,255,.09); box-shadow: var(--shadow); }
.lead-form label { display: grid; gap: 8px; font-weight: 900; color: var(--white); margin-bottom: 16px; }
.lead-form input, .lead-form select { width: 100%; min-height: 54px; border: 1px solid rgba(255,255,255,.16); border-radius: 17px; padding: 0 16px; background: rgba(3,7,17,.52); color: var(--white); outline: none; transition: var(--transition); }
.lead-form input:focus, .lead-form select:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(80,216,255,.13); }
.lead-form small { display: block; color: var(--muted); margin-top: 12px; }
.lead-form code { color: var(--cyan); }

.footer { padding: 58px 0 28px; background: #02050d; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .6fr; gap: 34px; }
.footer-logo { width: 180px; margin-bottom: 16px; }
.footer p { color: var(--muted); margin-bottom: 0; }
.footer a { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; color: #8291a7; border-top: 1px solid rgba(255,255,255,.08); margin-top: 34px; padding-top: 22px; }
.sticky-cta { position: fixed; right: 20px; bottom: 20px; z-index: 30; display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: var(--white); border-radius: 999px; padding: 12px 18px; box-shadow: 0 20px 42px rgba(26,167,255,.35); font-weight: 1000; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 230ms; }
.delay-4 { transition-delay: 300ms; }

@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card.featured { transform: none; }
  .hero-grid, .experience-grid, .schedule-grid, .location-grid, .enroll-grid { grid-template-columns: 1fr; }
  .hero-panel { min-height: 500px; }
}

@media (max-width: 780px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 70px 0; }
  .header-inner { min-height: 74px; }
  .brand-logo { width: 164px; }
  .nav-toggle { display: block; }
  .nav { position: fixed; top: 78px; left: 14px; right: 14px; display: grid; gap: 8px; padding: 14px; border: 1px solid var(--border); border-radius: 24px; background: rgba(3,7,17,.94); backdrop-filter: blur(18px); transform: translateY(-18px); opacity: 0; visibility: hidden; transition: var(--transition); }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { padding: 14px; }
  .hero { padding-top: 118px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.4rem); }
  .trust-bar, .strip-grid, .feature-grid, .plans-grid, .footer-grid, .transformation-grid { grid-template-columns: 1fr; }
  .strip-grid div { border-right: 0; border-bottom: 1px solid var(--border); }
  .strip-grid div:last-child { border-bottom: 0; }
  .floating-card { position: static; margin-top: 14px; max-width: none; }
  .hero-panel { display: block; min-height: auto; }
  .hero-card-main { width: 100%; }
  .hours-list div { grid-template-columns: 1fr; }
  .hours-list strong { text-align: left; }
  .schedule-card, .notice-card, .map-card, .transformation-grid { padding: 26px; border-radius: 26px; }
  .footer-bottom { flex-direction: column; }
  .sticky-cta { left: 14px; right: 14px; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}


.toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  z-index: 80;
  max-width: min(520px, calc(100% - 32px));
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(5, 13, 32, 0.92);
  color: #ffffff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-align: center;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
