/* =============================================
   VARIABLES Y RESET
   ============================================= */
:root {
  --navy:       #0a1628;
  --navy-mid:   #0f2044;
  --blue:       #1a3a6e;
  --blue-mid:   #1e4d9b;
  --accent:     #2d8cf0;
  --accent-glow:#4fa3ff;
  --teal:       #00c2cb;
  --white:      #ffffff;
  --gray-light: #f4f6fa;
  --gray:       #8a9ab8;
  --gray-border:#e2e8f0;
  --text-dark:  #0d1f3c;
  --text-mid:   #3d5282;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(10,22,40,.12);
  --shadow-lg:  0 12px 48px rgba(10,22,40,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w:      1160px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Inter',sans-serif;color:var(--text-dark);background:var(--white);-webkit-font-smoothing:antialiased}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}
ul{list-style:none}

/* =============================================
   UTILIDADES
   ============================================= */
.container{max-width:var(--max-w);margin:0 auto;padding:0 32px}
.section{padding:96px 0}
.section-label{
  font-family:'Sora',sans-serif;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:14px;
}
.section-title{
  font-family:'Sora',sans-serif;
  font-size:clamp(1.75rem,3vw,2.6rem);
  font-weight:700;
  line-height:1.15;
  color:var(--navy);
}
.section-sub{
  font-size:1.05rem;
  color:var(--text-mid);
  line-height:1.75;
  max-width:600px;
  margin-top:16px;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'Sora',sans-serif;
  font-size:.9rem;
  font-weight:600;
  border-radius:8px;
  padding:14px 28px;
  cursor:pointer;
  transition:var(--transition);
  border:2px solid transparent;
  white-space:nowrap;
}
.btn-primary{background:var(--accent);color:var(--white);border-color:var(--accent)}
.btn-primary:hover{background:var(--accent-glow);border-color:var(--accent-glow);transform:translateY(-2px);box-shadow:0 8px 28px rgba(45,140,240,.35)}
.btn-outline{background:transparent;color:var(--white);border-color:rgba(255,255,255,.45)}
.btn-outline:hover{background:rgba(255,255,255,.1);border-color:var(--white);transform:translateY(-2px)}
.btn-dark{background:var(--navy);color:var(--white);border-color:var(--navy)}
.btn-dark:hover{background:var(--blue);border-color:var(--blue);transform:translateY(-2px)}
.btn-outline-dark{background:transparent;color:var(--navy);border-color:var(--navy)}
.btn-outline-dark:hover{background:var(--navy);color:var(--white);transform:translateY(-2px)}

/* FADE-IN ANIMATION */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .6s ease, transform .6s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

/* =============================================
   HEADER
   ============================================= */
header{position:fixed;top:0;left:0;right:0;z-index:1000;background:var(--navy);transition:box-shadow var(--transition)}
header.scrolled{box-shadow:0 2px 20px rgba(0,0,0,.35)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:68px}
.logo{display:flex;align-items:center;gap:10px}
.logo-icon{
  width:38px;height:38px;border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--teal));
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.logo-icon svg{width:20px;height:20px;fill:var(--white)}
.logo-text{font-family:'Sora',sans-serif;font-size:1.05rem;font-weight:700;color:var(--white);letter-spacing:-.01em}
.logo-text span{color:var(--accent)}
nav{display:flex;align-items:center;gap:4px}
nav a{
  font-family:'Sora',sans-serif;font-size:.85rem;font-weight:500;
  color:rgba(255,255,255,.75);padding:8px 14px;border-radius:6px;transition:var(--transition);
}
nav a:hover{color:var(--white);background:rgba(255,255,255,.08)}
.header-cta{margin-left:12px}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px}
.hamburger span{display:block;width:24px;height:2px;background:var(--white);border-radius:2px;transition:var(--transition)}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-menu{
  display:none;position:absolute;top:68px;left:0;right:0;
  background:var(--navy-mid);padding:20px 32px 28px;
  border-top:1px solid rgba(255,255,255,.08);
}
.mobile-menu.open{display:block}
.mobile-menu a{
  display:block;font-family:'Sora',sans-serif;font-size:.95rem;font-weight:500;
  color:rgba(255,255,255,.82);padding:13px 0;border-bottom:1px solid rgba(255,255,255,.06);
}
.mobile-menu a:last-child{border-bottom:none}
.mobile-menu .btn{margin-top:18px;width:100%;justify-content:center}

/* =============================================
   HERO
   ============================================= */
.hero{
  padding-top:68px;
  background:linear-gradient(145deg,var(--navy) 0%,var(--navy-mid) 55%,#0d2856 100%);
  display:flex;align-items:center;position:relative;overflow:hidden;
}
.hero::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 60% at 70% 50%,rgba(45,140,240,.12) 0%,transparent 70%);
}
.hero-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:64px;align-items:start;
  padding:80px 0 40px;
}
.hero-visual{
  position:relative;
  padding-top:72px;
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(45,140,240,.15);border:1px solid rgba(45,140,240,.3);
  border-radius:100px;padding:6px 16px;
  font-family:'Sora',sans-serif;font-size:.75rem;font-weight:600;
  color:var(--accent);letter-spacing:.1em;text-transform:uppercase;
  margin-bottom:22px;
}
.hero-eyebrow::before{
  content:'';width:7px;height:7px;border-radius:50%;
  background:var(--teal);animation:pulse 2s infinite;
}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.3)}}

.hero h1{
  font-family:'Sora',sans-serif;
  font-size:clamp(2rem,4.5vw,3.4rem);
  font-weight:800;line-height:1.1;
  color:var(--white);margin-bottom:22px;
}
.hero h1 .highlight{color:var(--accent)}
.hero-sub{
  font-size:1.05rem;color:rgba(255,255,255,.72);
  line-height:1.8;max-width:500px;margin-bottom:0;
}

/* Fecha + hora — fila horizontal completa */
.hero-datetime-row{
  display:flex;
  flex-wrap:wrap;
  align-items:stretch;
  gap:12px;
  margin-bottom:24px;
}
.hero-time-inline{
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.16);
  border-radius:10px;
  padding:0 18px;
}

/* Fecha + hora */
.hero-date-badge{
  display:inline-flex;align-items:center;gap:10px;
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.16);
  border-radius:10px;padding:11px 18px;margin-bottom:0;
}
.hero-date-badge svg{width:17px;height:17px;stroke:var(--accent);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.hero-date-badge span{font-family:'Sora',sans-serif;font-size:1rem;font-weight:600;color:var(--white);line-height:1.35}

.hero-time-block{
  display:flex;flex-direction:column;align-items:flex-start;gap:3px;
  margin:0 0 24px;max-width:460px;
}
.hero-time-line{font-family:'Sora',sans-serif;font-size:1rem;font-weight:700;color:var(--white);line-height:1.35}
.hero-time-note{font-family:'Sora',sans-serif;font-size:.84rem;font-weight:700;color:var(--accent);line-height:1.35}
/* separador visual entre hora y país */
.hero-time-inline .hero-time-note::before{content:'·';margin-right:8px;color:rgba(255,255,255,.3)}
.hero-time-check-btn{
  display:inline-flex;align-items:center;justify-content:center;
  margin-top:0;padding:11px 18px;border-radius:10px;
  background:rgba(45,140,240,.16);border:1px solid rgba(79,163,255,.34);
  color:var(--white);font-family:'Sora',sans-serif;font-size:.88rem;font-weight:700;
  text-decoration:none;transition:var(--transition);
}
.hero-time-check-btn:hover{background:rgba(45,140,240,.26);border-color:rgba(79,163,255,.5);transform:translateY(-1px)}

/* Pricing */
.hero-pricing{
  margin:0 0 24px;
  padding:22px 24px;
  border-radius:16px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.20);
  max-width:460px;
  backdrop-filter:blur(4px);
}
.hero-pricing-badge-row{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:12px}
.hero-pricing-badge,
.hero-pricing-hotmart-badge{
  display:inline-flex;padding:5px 12px;border-radius:999px;
  background:rgba(79,163,255,.20);border:1px solid rgba(79,163,255,.34);
  font-family:'Sora',sans-serif;font-size:.7rem;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase;color:#fff;
}
.hero-pricing-hotmart-badge{
  background:rgba(0,194,203,.16);border-color:rgba(0,194,203,.34);
}
.hero-pricing-main{display:flex;align-items:flex-end;gap:14px;flex-wrap:wrap}
.current-price{font-family:'Sora',sans-serif;font-size:2.2rem;font-weight:800;line-height:1;color:#fff}
.old-price{font-family:'Sora',sans-serif;font-size:1rem;font-weight:600;color:rgba(255,255,255,.6);text-decoration:line-through;margin-bottom:3px}
.hero-pricing-note{margin-top:10px;font-size:.88rem;line-height:1.6;color:rgba(255,255,255,.85)}

/* Prereq */
.hero-prereq-note{
  max-width:460px;margin:0 0 24px;
  padding:14px 18px;border-radius:12px;
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.13);
}
.hero-prereq-note strong{display:block;font-family:'Sora',sans-serif;font-size:.92rem;font-weight:700;color:var(--white);margin-bottom:8px}
.hero-prereq-note span{display:block;font-size:.9rem;line-height:1.65;color:rgba(255,255,255,.8)}
.prereq-pill{
  display:inline-flex;align-items:center;padding:6px 14px;border-radius:999px;
  background:linear-gradient(135deg,rgba(45,140,240,.28),rgba(0,194,203,.22));
  border:1px solid rgba(255,255,255,.22);box-shadow:0 6px 18px rgba(0,0,0,.15);
}

/* Chips */
.hero-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:24px;
  width:100%;
}
.chip{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);
  border-radius:100px;padding:9px 16px;
  font-family:'Sora',sans-serif;font-size:.82rem;font-weight:600;
  color:rgba(255,255,255,.9);white-space:nowrap;
}
.chip svg{width:14px;height:14px;stroke:var(--teal);fill:none;stroke-width:2.2;flex-shrink:0}

.hero-cta{display:flex;flex-wrap:wrap;gap:12px;align-items:center;padding:0 0 44px}

/* Hero visual */
.hero-visual{position:relative}
.hero-img-wrap{
  border-radius:var(--radius-lg);overflow:hidden;position:relative;
  aspect-ratio:4/3;background:linear-gradient(135deg,var(--blue) 0%,var(--navy-mid) 100%);
}
.hero-img-wrap img{width:100%;height:100%;object-fit:contain;object-position:center center;border-radius:var(--radius-lg);background:linear-gradient(135deg,var(--blue) 0%,var(--navy-mid) 100%)}
.hero-img-placeholder{
  width:100%;height:100%;display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:16px;
  color:rgba(255,255,255,.3);font-family:'Sora',sans-serif;font-size:.85rem;
}
.hero-img-placeholder svg{width:64px;height:64px;stroke:rgba(255,255,255,.2);fill:none;stroke-width:1.5}
.hero-badge-float{
  position:absolute;bottom:-12px;left:-16px;
  background:var(--white);border-radius:var(--radius);
  padding:14px 20px;box-shadow:var(--shadow-lg);
  display:flex;align-items:center;gap:12px;
}
.hero-badge-float .icon{
  width:40px;height:40px;border-radius:10px;
  background:linear-gradient(135deg,var(--accent),var(--teal));
  display:flex;align-items:center;justify-content:center;
}
.hero-badge-float .icon svg{width:20px;height:20px;stroke:var(--white);fill:none;stroke-width:2}
.hero-badge-float .label{font-family:'Sora',sans-serif;font-size:.76rem;color:var(--gray);font-weight:500}
.hero-badge-float .value{font-family:'Sora',sans-serif;font-size:.95rem;font-weight:700;color:var(--navy)}

/* =============================================
   CONTEXTO / POR QUÉ ESTE CURSO
   ============================================= */
.context-section{background:var(--white)}
.context-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:72px;align-items:start;
}
.context-left .section-label{margin-bottom:14px}
.context-left .section-title{margin-bottom:24px;text-align:left}
.context-text{
  font-size:1rem;line-height:1.8;color:var(--text-mid);margin-bottom:16px;
}
.context-quote{
  margin-top:28px;
  background:var(--navy);
  border-radius:var(--radius);
  padding:28px 28px 24px;
  border-left:4px solid var(--accent);
}
.context-quote p{
  font-family:'Sora',sans-serif;font-size:1rem;font-weight:700;font-style:italic;
  color:var(--white);line-height:1.7;margin-bottom:16px;
}
.context-quote-desc{
  font-size:.85rem;line-height:1.75;color:rgba(255,255,255,.6);
  border-top:1px solid rgba(255,255,255,.1);padding-top:14px;
}

/* Tarjeta derecha */
.context-card{
  background:linear-gradient(145deg,var(--navy) 0%,var(--blue) 100%);
  border-radius:var(--radius-lg);padding:32px 28px;
  display:flex;flex-direction:column;gap:24px;
  box-shadow:var(--shadow-lg);
  position:relative;overflow:hidden;
}
.context-card::before{
  content:'';position:absolute;top:-40px;right:-40px;
  width:200px;height:200px;border-radius:50%;
  background:rgba(45,140,240,.12);
}
.context-item{display:flex;gap:18px;align-items:flex-start}
.context-item-icon{
  width:42px;height:42px;border-radius:10px;flex-shrink:0;
  background:rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
}
.context-item-icon svg{width:20px;height:20px;stroke:var(--accent)}
.context-item h4{
  font-family:'Sora',sans-serif;font-size:.95rem;font-weight:700;
  color:var(--white);margin-bottom:6px;
}
.context-item p{font-size:.85rem;line-height:1.65;color:rgba(255,255,255,.65)}

@media(max-width:768px){
  .context-grid{grid-template-columns:1fr;gap:40px}
  .context-left .section-title{font-size:1.8rem}
}

/* =============================================
   TEMARIO - ACCORDION
   ============================================= */
.temario{background:var(--gray-light)}
.temario-header{text-align:center;margin-bottom:52px}
.temario-header .section-sub{margin:16px auto 0;max-width:600px}
.accordion{display:flex;flex-direction:column;gap:10px;max-width:820px;margin:0 auto}
.acc-item{
  background:var(--white);border:1px solid var(--gray-border);
  border-radius:var(--radius);overflow:hidden;transition:var(--transition);
}
.acc-item.open{border-color:var(--accent);box-shadow:0 4px 18px rgba(45,140,240,.12)}
.acc-trigger{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 26px;cursor:pointer;gap:16px;
  background:none;border:none;width:100%;text-align:left;
}
.acc-trigger-left{display:flex;align-items:center;gap:14px}
.acc-num{
  width:32px;height:32px;border-radius:8px;flex-shrink:0;
  background:linear-gradient(135deg,var(--accent),var(--teal));
  display:flex;align-items:center;justify-content:center;
  font-family:'Sora',sans-serif;font-size:.75rem;font-weight:700;color:var(--white);
}
.acc-trigger h3{font-family:'Sora',sans-serif;font-size:.95rem;font-weight:600;color:var(--navy)}
.acc-chevron{
  width:22px;height:22px;stroke:var(--gray);fill:none;
  stroke-width:2;stroke-linecap:round;flex-shrink:0;transition:transform var(--transition);
}
.acc-item.open .acc-chevron{transform:rotate(180deg);stroke:var(--accent)}
.acc-body{max-height:0;overflow:hidden;transition:max-height .4s ease}
.acc-body-inner{
  padding:4px 26px 24px 72px;
  font-size:.92rem;color:var(--text-mid);line-height:1.8;
}

/* =============================================
   AUDIENCIA
   ============================================= */
.audience{background:var(--white)}
.audience-header{text-align:center;margin-bottom:56px}
.audience-header .section-sub{margin:16px auto 0;max-width:640px}
.audience-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.audience-grid-compact{grid-template-columns:repeat(2,1fr)}
.audience-card{
  background:var(--gray-light);border-radius:var(--radius);
  padding:32px 24px;text-align:center;transition:var(--transition);
  border:1px solid transparent;
}
.audience-card:hover{
  background:var(--white);border-color:rgba(45,140,240,.2);
  box-shadow:var(--shadow);transform:translateY(-4px);
}
.audience-icon{
  width:64px;height:64px;border-radius:16px;
  background:linear-gradient(135deg,rgba(45,140,240,.12),rgba(0,194,203,.10));
  border:1px solid rgba(45,140,240,.18);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;
}
.audience-icon svg{width:32px;height:32px;stroke:var(--accent);color:var(--accent)}
.audience-card h3{font-family:'Sora',sans-serif;font-size:.9rem;font-weight:700;color:var(--navy);margin-bottom:10px;line-height:1.35}
.audience-card p{font-size:.83rem;color:var(--text-mid);line-height:1.65}

/* =============================================
   INFO CLAVE
   ============================================= */
.info-band{background:linear-gradient(135deg,var(--navy) 0%,var(--blue-mid) 100%)}
.info-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;align-items:stretch}
.info-item{
  padding:36px 20px;text-align:center;
  border-right:1px solid rgba(255,255,255,.09);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.info-item:last-child{border-right:none}
.info-icon{
  width:46px;height:46px;border-radius:10px;
  background:rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;margin:0 auto 14px;flex-shrink:0;
}
.info-icon svg{width:22px;height:22px;stroke:var(--accent);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.info-label{
  font-family:'Sora',sans-serif;font-size:.68rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;color:var(--accent);margin-bottom:6px;
}
.info-value{
  font-family:'Sora',sans-serif;font-size:.9rem;font-weight:700;
  color:var(--white);line-height:1.3;word-break:keep-all;hyphens:none;
}
.info-sub{font-size:.75rem;color:rgba(255,255,255,.5);margin-top:5px}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final{
  background:linear-gradient(145deg,var(--navy-mid) 0%,#0d2856 100%);
  padding:64px 0;
  position:relative;overflow:hidden;
}
.cta-final::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 70% 90% at 30% 50%,rgba(45,140,240,.12) 0%,transparent 70%);
}
.cta-inner{
  position:relative;z-index:1;
  display:grid;
  grid-template-columns:1fr auto;
  gap:48px;
  align-items:center;
}
.cta-left{text-align:left}
.cta-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(45,140,240,.15);border:1px solid rgba(45,140,240,.3);
  border-radius:100px;padding:7px 18px;
  font-family:'Sora',sans-serif;font-size:.74rem;font-weight:600;
  color:var(--accent);letter-spacing:.1em;text-transform:uppercase;margin-bottom:20px;
}
.cta-final h2{
  font-family:'Sora',sans-serif;
  font-size:clamp(1.5rem,2.8vw,2.2rem);
  font-weight:800;color:var(--white);line-height:1.2;margin-bottom:14px;
}
.cta-final p{font-size:.98rem;color:rgba(255,255,255,.70);line-height:1.75;margin-bottom:28px}
.cta-main-btn{font-size:1rem;padding:15px 32px}

/* Columna derecha — contacto */
.cta-right{
  display:flex;flex-direction:column;gap:12px;
  min-width:220px;
}
.cta-contact-label{
  font-family:'Sora',sans-serif;font-size:.75rem;font-weight:600;
  color:rgba(255,255,255,.45);letter-spacing:.08em;text-transform:uppercase;
  margin-bottom:4px;text-align:center;
}
.cta-contact-btn{
  display:flex;align-items:center;justify-content:center;gap:10px;
  padding:14px 24px;border-radius:12px;
  font-family:'Sora',sans-serif;font-size:.95rem;font-weight:700;
  text-decoration:none;transition:var(--transition);white-space:nowrap;
}
.cta-whatsapp{
  background:#25d366;color:#fff;
  box-shadow:0 6px 20px rgba(37,211,102,.25);
}
.cta-whatsapp:hover{background:#1ebe5d;transform:translateY(-2px);box-shadow:0 10px 28px rgba(37,211,102,.35)}
.cta-phone{
  background:rgba(45,140,240,.18);border:1px solid rgba(79,163,255,.35);
  color:var(--white);
}
.cta-phone:hover{background:rgba(45,140,240,.30);border-color:rgba(79,163,255,.6);transform:translateY(-2px)}
.cta-buttons{display:flex;flex-wrap:wrap;gap:14px;justify-content:center}

@media(max-width:768px){
  .cta-inner{grid-template-columns:1fr;gap:32px}
  .cta-right{min-width:0}
  .cta-contact-btn{width:100%}
}

/* =============================================
   BUY NOW
   ============================================= */
.buy-now-main{
  background:#16a34a !important;
  border-color:#16a34a !important;
  color:#ffffff !important;
  box-shadow:0 8px 24px rgba(22,163,74,.25);
}
.buy-now-main:hover{
  background:#15803d !important;
  border-color:#15803d !important;
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(21,128,61,.32);
}

/* Ajuste footer curso: evita que el fondo blanco del body aparezca en las esquinas redondeadas superiores del footer. */
.footer-bleed{background:linear-gradient(180deg,rgba(9,30,63,.94),rgba(4,19,41,.97));padding-bottom:18px;overflow:hidden;}

/* =============================================
   FOOTER
   ============================================= */
footer{background:var(--navy);border-top:1px solid rgba(255,255,255,.06)}
.footer-top{
  display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:48px;padding:64px 0 52px;
}
.footer-brand p{
  font-size:.88rem;color:rgba(255,255,255,.5);
  line-height:1.75;margin-top:16px;max-width:240px;
}
.footer-brand .logo{margin-bottom:4px}
.footer-col h4{
  font-family:'Sora',sans-serif;font-size:.8rem;font-weight:700;
  color:var(--white);letter-spacing:.08em;text-transform:uppercase;margin-bottom:20px;
}
.footer-col ul li{margin-bottom:12px}
.footer-col ul li a{font-size:.87rem;color:rgba(255,255,255,.5);transition:color var(--transition)}
.footer-col ul li a:hover{color:var(--accent)}
.footer-contact{font-size:.87rem;color:rgba(255,255,255,.5);line-height:2}
.footer-contact a{color:rgba(255,255,255,.5);transition:color var(--transition)}
.footer-contact a:hover{color:var(--accent)}
.social-links{display:flex;gap:10px;margin-top:20px}
.social-link{
  width:38px;height:38px;border-radius:8px;
  background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;transition:var(--transition);
}
.social-link:hover{background:var(--accent)}
.social-link svg{width:17px;height:17px;stroke:rgba(255,255,255,.7);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.06);
  padding:22px 0;display:flex;align-items:center;justify-content:space-between;
}
.footer-bottom p{font-size:.8rem;color:rgba(255,255,255,.3)}
.footer-bottom .tagline{font-family:'Sora',sans-serif;font-size:.78rem;font-weight:600;color:rgba(255,255,255,.25);font-style:italic}

/* =============================================
   RESPONSIVE
   ============================================= */
@media(max-width:1024px){
  .compact-benefits-grid{grid-template-columns:repeat(2,1fr)}
  .audience-grid-compact{grid-template-columns:repeat(2,1fr)}
  .info-grid{grid-template-columns:repeat(2,1fr)}
  .info-item{border-right:none;border-bottom:1px solid rgba(255,255,255,.08)}
  .info-item:last-child{border-bottom:none}
  .footer-top{grid-template-columns:1fr 1fr}
}

@media(max-width:768px){
  .container{padding:0 20px}
  .section{padding:64px 0}
  nav,.header-cta{display:none}
  .hamburger{display:flex}

  .hero-grid{grid-template-columns:1fr;gap:40px;padding:56px 0 52px}
  .hero-visual{order:-1;padding-top:0}
  .hero-badge-float{bottom:-14px;left:14px}
  .hero-sub{max-width:none}
  .hero-datetime-row{flex-direction:column;align-items:flex-start;gap:10px}
  .hero-time-inline{width:100%}
  .hero-time-check-btn{width:100%;text-align:center}
  .hero-date-badge{width:100%;max-width:none;margin-bottom:0}
  .hero-pricing{max-width:none;padding:18px}
  .current-price{font-size:1.9rem}
  .hero-prereq-note{max-width:none}

  .hero-chips{gap:8px}
  .chip{font-size:.85rem}
  .hero-cta{flex-direction:column;align-items:flex-start;padding:0 0 32px}
  .hero-cta .btn{width:100%;max-width:340px;justify-content:center}

  .compact-overview{padding-top:56px;padding-bottom:64px}
  .compact-main-text,.compact-header .section-sub{font-size:.98rem;line-height:1.78}
  .compact-benefits-grid{grid-template-columns:1fr;gap:16px;margin-top:40px}

  .acc-trigger{padding:18px 20px}
  .acc-body-inner{padding:4px 20px 22px 20px}

  .audience-grid-compact{grid-template-columns:1fr}

  .info-grid{grid-template-columns:1fr 1fr}

  .footer-top{grid-template-columns:1fr;gap:36px;padding:48px 0 40px}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center}

  .cta-buttons{flex-direction:column;align-items:center}
  .cta-buttons .btn{width:100%;max-width:320px;justify-content:center}
}

@media(max-width:480px){
  .info-grid{grid-template-columns:1fr}
  .info-item{border-bottom:1px solid rgba(255,255,255,.08)}
  .hero-cta .btn{max-width:none}
}


/* Side-by-side layout for launch and prerequisite cards — fila completa fuera del hero-grid */
.hero-cards-row{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
  gap:20px;
  align-items:stretch;
  width:100%;
  padding:0 0 40px;
}

.hero-cards-row .hero-pricing,
.hero-cards-row .hero-prereq-note{
  max-width:none;
  margin:0;
  height:100%;
}

.hero-cards-row .hero-pricing{
  padding:22px 24px;
}

.hero-cards-row .hero-prereq-note{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

@media(max-width:768px){
  .hero-cards-row{
    grid-template-columns:1fr;
    padding:0 0 32px;
  }
}



.topbar{display:flex;align-items:center;justify-content:space-between;gap:34px;min-height:108px;padding:14px 42px;margin-bottom:16px;border:1px solid rgba(124,184,255,.16);border-radius:0;background:linear-gradient(90deg,rgba(11,26,51,.99),rgba(13,29,54,.99));box-shadow:inset 0 -1px 0 rgba(255,255,255,.04)}
.brand-inline{display:flex;align-items:center;gap:16px;min-width:0;flex:0 0 auto}.brand-mini{width:88px;height:88px;object-fit:contain;filter:drop-shadow(0 10px 24px rgba(78,154,255,.2))}.brand-texts{display:flex;flex-direction:column;min-width:0}.brand-name{font-size:0;font-weight:800;letter-spacing:-.035em;color:#f3f7ff;line-height:1;white-space:nowrap}.brand-name::before{content:"Nova";font-size:1.1rem;color:#f3f7ff}.brand-name span{color:#53a6ff;font-size:1.1rem}.main-nav{display:flex;align-items:center;justify-content:center;gap:44px;margin-left:auto;padding-left:22px}.main-nav a{font-size:.99rem;font-weight:500;color:rgba(236,242,255,.9);letter-spacing:-.01em;transition:color .2s ease,opacity .2s ease}.main-nav a:hover{color:#fff;opacity:1}.top-cta{display:inline-flex;align-items:center;justify-content:center;min-height:56px;padding:0 24px;min-width:246px;border-radius:16px;border:1px solid rgba(98,164,255,.42);background:linear-gradient(180deg,#4591ff 0%,#2d72e7 100%);box-shadow:0 14px 36px rgba(42,111,231,.28),inset 0 1px 0 rgba(255,255,255,.12);font-weight:700;font-size:.98rem;letter-spacing:-.01em;white-space:nowrap}
.footer{padding:0 24px 18px;display:grid;gap:0;overflow:hidden;background:linear-gradient(180deg,rgba(9,30,63,.94),rgba(4,19,41,.97));border:1px solid rgba(85,157,255,.55);box-shadow:0 20px 40px rgba(0,0,0,.36),inset 0 1px 0 rgba(255,255,255,.06),0 0 0 1px rgba(114,175,255,.08),0 0 24px rgba(41,131,255,.12);border-radius:18px}.footer-inner{width:min(100%,1220px);margin:0 auto;padding:0 10px}.footer-main{display:grid;grid-template-columns:minmax(360px,1fr) minmax(180px,220px) minmax(180px,220px);justify-content:center;align-items:start;column-gap:clamp(48px,7vw,120px);row-gap:28px;padding:30px 0 26px;border-top:1px solid rgba(115,180,255,.12)}.footer-brand-col{max-width:430px;justify-self:start}.footer-courses-col,.footer-company-col{justify-self:center;width:100%;max-width:220px}.footer-company-col{align-self:start}.footer-brand-row{display:flex;align-items:center;gap:16px;margin-bottom:14px}.footer-logo{width:58px;height:58px;flex:0 0 58px;object-fit:contain;border-radius:50%;filter:drop-shadow(0 8px 16px rgba(41,131,255,.18))}.footer-brand-name{display:inline-flex;align-items:center;gap:0;font-size:1.08rem;font-weight:800;letter-spacing:-.02em;line-height:1}.footer-brand-name .brand-white{color:#f4f8ff}.footer-brand-name .brand-blue{color:#5da8ff}.footer-brand-copy{max-width:420px;margin:0 0 12px;color:#8ebeff;line-height:1.5}.footer-contact-link{display:block;color:#8ebeff;line-height:1.65;margin:0 0 2px;transition:color .2s ease,opacity .2s ease}.footer-contact-link:hover{color:#d8eaff}.footer-links-col h4,.footer-social-block h4{margin:0 0 16px;font-size:1.25rem;letter-spacing:-.02em;color:#fff}.footer-features-col{align-self:start}.footer-feature-item{display:block;margin:0 0 12px;color:#7fb7ff;line-height:1.45;font-size:.98rem}.footer-feature-item:last-child{margin-bottom:0}.footer-links-col a{display:block;margin:0 0 8px;color:#7fb7ff;line-height:1.45;transition:color .2s ease,opacity .2s ease}.footer-links-col a:hover{color:#d8eaff}.footer-social-block{margin-top:28px}.social-list{display:flex;gap:14px;align-items:center}.social-btn{width:42px;height:42px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center;line-height:0;border:1px solid rgba(89,157,255,.38);background:linear-gradient(180deg,rgba(10,30,61,.92),rgba(6,22,45,.98));box-shadow:inset 0 1px 0 rgba(255,255,255,.04),0 8px 18px rgba(0,0,0,.18);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease}.social-btn-inner{width:100%;height:100%;display:grid;place-items:center}.social-icon{width:18px;height:18px;display:block}.social-icon path{fill:#7fb7ff}.social-btn:hover{transform:translateY(-1px);border-color:rgba(132,191,255,.72);background:linear-gradient(180deg,rgba(18,49,95,.98),rgba(9,31,63,.99));box-shadow:0 0 0 1px rgba(120,184,255,.1),0 0 18px rgba(65,141,255,.22),inset 0 1px 0 rgba(255,255,255,.07)}.social-btn:hover .social-icon path{fill:#d7ebff}.footer-bottom{position:relative;display:flex;justify-content:space-between;align-items:center;gap:18px;padding:18px 0 0;margin-top:8px;border-top:1px solid rgba(115,180,255,.14)}.footer-bottom::before{content:"";position:absolute;top:-1px;left:0;right:0;height:1px;background:linear-gradient(90deg,rgba(84,153,255,0),rgba(84,153,255,.18),rgba(84,153,255,0));pointer-events:none}.footer-bottom p{margin:0;color:#84bbff;font-size:.9rem;line-height:1.4}.footer-bottom span{margin:0;background:linear-gradient(180deg,#9ac9ff 0%,#74afff 55%,#5f9bf6 100%);-webkit-background-clip:text;background-clip:text;color:transparent;font-size:.9rem;line-height:1.4;font-weight:800;display:inline-block}
@media (max-width:980px){.topbar{padding:14px 16px;gap:14px;min-height:auto;flex-wrap:wrap;border-radius:16px}.brand-mini{width:58px;height:58px}.brand-name::before,.brand-name span{font-size:.9rem}.main-nav{order:3;width:100%;justify-content:space-between;gap:18px;overflow-x:auto;padding:2px 0 4px;margin-left:0}.main-nav a{font-size:.92rem;white-space:nowrap}.top-cta{min-height:46px;min-width:auto;padding:0 16px;font-size:.84rem;border-radius:13px}.footer{padding:0 20px 18px}.footer-main{grid-template-columns:1fr 1fr;gap:34px 28px}.footer-brand-col,.footer-courses-col,.footer-company-col{justify-self:start;max-width:none}.footer-company-col{grid-column:1 / -1;min-width:0}.footer-social-block{margin-top:22px}}
@media (max-width:720px){.footer{padding:0 16px 16px}.footer-inner{padding:0}.footer-main{grid-template-columns:1fr;gap:24px;padding:22px 0 20px}.footer-brand-col,.footer-courses-col,.footer-company-col{max-width:none;width:100%;justify-self:start}.footer-logo{width:52px;height:52px;flex-basis:52px}.footer-brand-name{font-size:1rem}.footer-links-col h4,.footer-social-block h4{font-size:1.12rem;margin-bottom:12px}.footer-feature-item{margin-bottom:10px;font-size:.95rem}.social-btn{width:40px;height:40px}.footer-bottom{flex-direction:column;align-items:flex-start;gap:8px;padding-top:14px}.footer-bottom p,.footer-bottom span{font-size:.84rem}}


/* user requested adjustments */
.brand-name{
  font-size:1.1rem;
  display:inline-flex;
  align-items:center;
  gap:0;
  letter-spacing:-0.035em;
  white-space:nowrap;
}
.brand-name::before{content:none;}
.brand-white-main{color:#f3f7ff;}
.brand-blue-main{color:#53a6ff;}

.top-cta.top-cta-buy{
  background: linear-gradient(180deg, #28c454 0%, #19a746 100%);
  border-color: rgba(61, 210, 104, 0.42);
  color:#ffffff;
  box-shadow: 0 14px 36px rgba(20, 120, 52, 0.28), inset 0 1px 0 rgba(255,255,255,0.12);
}
.top-cta.top-cta-buy:hover{
  filter: brightness(1.03);
}

/* CTA contact buttons exactly aligned like reference */
.cta-right{
  display:grid;
  gap:16px;
  justify-items:stretch;
  min-width:420px;
}
.cta-contact-btn{
  width:100%;
  min-height:64px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  text-decoration:none;
}
.cta-btn-inner{
  width:280px;
  display:grid;
  grid-template-columns:34px 1fr;
  align-items:center;
  column-gap:14px;
}
.cta-icon{
  width:34px;
  height:34px;
  min-width:34px;
  min-height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.cta-label{
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  font-family:'Sora',sans-serif;
  font-size:.95rem;
  font-weight:800;
  line-height:1;
  color:#ffffff;
}
.cta-whatsapp{
  background: linear-gradient(180deg, #31d25f 0%, #25c756 100%);
  box-shadow: 0 18px 36px rgba(28, 164, 77, 0.28);
}
.cta-phone{
  background: linear-gradient(180deg, #4692ff 0%, #2d72e7 100%);
  box-shadow: 0 18px 36px rgba(42, 111, 231, 0.26);
}
.cta-svg-wa{
  width:34px;
  height:34px;
  display:block;
}
.wa-circle{ fill:#39d463; }
.wa-stroke,.wa-phone-glyph{ fill:#ffffff; }
.cta-svg-phone{
  width:20px;
  height:20px;
  display:block;
}
.cta-svg-phone path{ fill:#ffffff; }

@media (max-width:980px){
  .cta-right{min-width:0;}
}
@media (max-width:720px){
  .brand-name{font-size:.9rem;}
  .cta-contact-btn{
    min-height:62px;
    padding:0 18px;
  }
  .cta-btn-inner{
    width:240px;
    grid-template-columns:32px 1fr;
    column-gap:12px;
  }
  .cta-icon{
    width:32px;
    height:32px;
    min-width:32px;
    min-height:32px;
  }
  .cta-svg-wa{width:32px;height:32px;}
  .cta-svg-phone{width:19px;height:19px;}
}


/* v3 exact header brand match */
.brand-name{
  font-family:'Sora',sans-serif;
  font-size:1.05rem;
  font-weight:700;
  letter-spacing:-0.01em;
  line-height:1;
}
.brand-white-main{color:#f3f7ff;}
.brand-blue-main{color:#53a6ff;}
.brand-it-tight{margin-left:0;}

@media (max-width:720px){
  .brand-name{
    font-size:.95rem;
  }
}


.hero-pricing-subnote{
  margin-top:12px;
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  font-size:.78rem;
  line-height:1.45;
  color:rgba(255,255,255,.72);
}

@media(max-width:768px){
  .hero-pricing-subnote{
    width:100%;
    display:flex;
  }
}


/* header brand color fix - targeted only */
.topbar .brand-name{
  font-family:'Sora',sans-serif;
  font-size:1.05rem;
  font-weight:800;
  letter-spacing:-0.03em;
  line-height:1;
  display:inline-flex;
  align-items:center;
  gap:0;
}
.topbar .brand-white-main{color:#ffffff !important;}
.topbar .brand-blue-main{color:#4f9cff !important;}
.topbar .brand-it-tight{
  color:#ffffff !important;
  margin-left:-0.01em;
}
@media (max-width:720px){
  .topbar .brand-name{
    font-size:.95rem;
  }
}


/* ajustes solicitados: alineación header y hero */
.topbar{
  width:min(calc(100% - 64px), var(--max-w));
  margin:0 auto 16px;
  padding:14px 32px;
}

.hero-visual{
  padding-top:24px;
}

@media (max-width:980px){
  .topbar{
    width:min(calc(100% - 32px), var(--max-w));
    padding:14px 16px;
  }
}

@media (max-width:720px){
  .topbar{
    width:min(calc(100% - 24px), var(--max-w));
  }

  .hero-visual{
    padding-top:0;
  }
}


/* =============================================
   Ajustes solicitados: FAQ, CTA final y botones
   ============================================= */
.top-cta.top-cta-buy{
  background:linear-gradient(180deg,#4da2ff 0%,#2f78ed 100%) !important;
  border-color:rgba(118,184,255,.55) !important;
  color:#ffffff !important;
  box-shadow:0 14px 34px rgba(47,120,237,.26), inset 0 1px 0 rgba(255,255,255,.16) !important;
}
.top-cta.top-cta-buy:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

.buy-now-main{
  background:linear-gradient(180deg,#63b7ff 0%,#2f78ed 55%,#1f5fd3 100%) !important;
  border-color:rgba(125,195,255,.78) !important;
  color:#ffffff !important;
  box-shadow:0 16px 34px rgba(47,120,237,.32), 0 0 0 1px rgba(255,255,255,.08) inset !important;
}
.buy-now-main:hover{
  background:linear-gradient(180deg,#78c5ff 0%,#3b86f2 55%,#2368dc 100%) !important;
  border-color:rgba(160,215,255,.9) !important;
  transform:translateY(-2px);
  box-shadow:0 20px 42px rgba(47,120,237,.42), 0 0 22px rgba(92,168,255,.22) !important;
}

.faq-section{
  background:linear-gradient(160deg,#0a234d 0%,#0f356b 54%,#061a3a 100%);
  position:relative;
  overflow:hidden;
}
.faq-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 18%,rgba(82,168,255,.20),transparent 34%),
    radial-gradient(circle at 88% 12%,rgba(32,206,185,.13),transparent 30%),
    linear-gradient(180deg,rgba(255,255,255,.025),rgba(255,255,255,0));
  pointer-events:none;
}
.faq-panel{
  position:relative;
  z-index:1;
  border:1px solid rgba(104,174,255,.28);
  border-radius:24px;
  padding:44px;
  background:linear-gradient(180deg,rgba(9,31,66,.78),rgba(5,18,40,.86));
  box-shadow:0 28px 70px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.06);
}
.faq-header{
  text-align:center;
  margin-bottom:34px;
}
.faq-section .section-title{
  color:#ffffff;
}
.faq-section .section-sub{
  color:rgba(220,235,255,.72);
  margin:14px auto 0;
  max-width:720px;
}
.faq-section .section-label{
  color:#8ec5ff;
  background:rgba(74,157,255,.13);
  border-color:rgba(112,183,255,.30);
}
.faq-list{
  max-width:980px;
}
.faq-item{
  background:rgba(255,255,255,.055);
  border-color:rgba(130,190,255,.20);
  backdrop-filter:blur(10px);
}
.faq-item.open{
  border-color:rgba(111,184,255,.65);
  box-shadow:0 14px 34px rgba(0,0,0,.20), 0 0 22px rgba(64,144,255,.10);
}
.faq-item .acc-trigger h3{
  color:#f3f8ff;
}
.faq-item .acc-chevron{
  stroke:#9ccaff;
}
.faq-item .acc-body-inner{
  color:rgba(220,235,255,.75);
}
.faq-item .acc-num{
  background:linear-gradient(135deg,#53a6ff,#20ceb9);
}

.cta-final{
  background:#061a3a;
  padding:64px 0;
}
.cta-final::before{
  display:none;
}
.cta-inner{
  border-radius:28px;
  border:1px solid rgba(88,158,255,.42);
  background:
    radial-gradient(circle at 92% 0%,rgba(83,166,255,.16),transparent 26%),
    linear-gradient(160deg,rgba(12,38,82,.95),rgba(6,20,46,.98));
  box-shadow:0 24px 64px rgba(0,0,0,.36),0 0 28px rgba(58,139,255,.14);
  overflow:hidden;
  position:relative;
  padding:52px 56px;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.cta-inner::before{
  content:"";
  position:absolute;
  top:-80px;
  right:-80px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(58,139,255,.18),transparent 70%);
  pointer-events:none;
}
.cta-left,.cta-right{
  position:relative;
  z-index:1;
}
.cta-badge{
  display:inline-block;
  padding:7px 18px;
  border-radius:999px;
  border:1px solid rgba(88,158,255,.42);
  background:rgba(58,139,255,.08);
  color:#8ec5ff;
  font-family:'Sora',sans-serif;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:22px;
}
.cta-final h2{
  font-size:clamp(1.8rem,3.3vw,2.85rem);
  line-height:1.08;
  letter-spacing:-.04em;
  margin-bottom:20px;
}
.cta-final p{
  max-width:590px;
  color:rgba(210,228,255,.72);
  font-size:1rem;
  line-height:1.75;
  margin-bottom:28px;
}
.cta-main-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 34px;
  border-radius:16px;
  font-weight:800;
}
.cta-right{
  display:flex !important;
  flex-direction:column !important;
  gap:12px !important;
  min-width:0 !important;
}
.cta-contact-label{
  color:#eaf3ff;
  text-transform:none;
  letter-spacing:-.02em;
  text-align:left;
  font-size:1rem;
  font-weight:700;
  margin:0 0 2px;
}
.cta-contact-btn{
  width:100%;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:16px;
  padding:16px 22px;
  border-radius:18px;
  border:1px solid rgba(88,158,255,.28);
  font-family:'Sora',sans-serif;
  text-decoration:none;
  transition:transform .18s ease,border-color .2s ease,background .2s ease,box-shadow .2s ease;
}
.cta-contact-btn:hover{
  transform:translateX(3px);
}
.cta-icon{
  width:44px;
  height:44px;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  display:grid;
  place-items:center;
  flex:0 0 44px;
}
.cta-icon svg{
  width:20px;
  height:20px;
}
.cta-text{
  display:flex;
  flex-direction:column;
  line-height:1.25;
  font-weight:800;
}
.cta-text small{
  font-size:.78rem;
  font-weight:500;
  opacity:.68;
  margin-bottom:4px;
}
.cta-whatsapp{
  color:#4ade80;
  background:rgba(34,197,94,.10) !important;
  border-color:rgba(34,197,94,.34) !important;
  box-shadow:none !important;
}
.cta-whatsapp:hover{
  background:rgba(34,197,94,.16) !important;
  border-color:rgba(34,197,94,.52) !important;
}
.cta-phone{
  color:#78baff !important;
  background:rgba(58,139,255,.10) !important;
  border-color:rgba(88,158,255,.42) !important;
  box-shadow:none !important;
}
.cta-phone:hover{
  background:rgba(58,139,255,.16) !important;
}
.cta-mail{
  color:#f2f7ff;
  background:rgba(255,255,255,.045);
  border-color:rgba(138,173,216,.24);
}
.cta-mail:hover{
  border-color:rgba(88,158,255,.48);
  background:rgba(255,255,255,.075);
}

@media(max-width:980px){
  .faq-panel{padding:34px 22px;}
  .cta-inner{
    grid-template-columns:1fr;
    padding:38px 26px;
    gap:34px;
  }
}
@media(max-width:640px){
  .faq-panel{border-radius:20px;padding:28px 16px;}
  .faq-section .acc-trigger-left{align-items:flex-start;}
  .faq-section .acc-trigger h3{font-size:.9rem;}
  .faq-section .acc-body-inner{padding-left:26px;}
  .cta-inner{border-radius:22px;padding:32px 20px;}
  .cta-contact-btn{min-height:72px;padding:14px 16px;}
  .cta-final h2{font-size:1.85rem;}
}


/* Ajustes finales solicitados: precio, FAQ, botón compra y anclas de menú */
.current-price{color:#ffd166 !important;text-shadow:0 0 18px rgba(255,209,102,.32),0 2px 0 rgba(0,0,0,.16);}
.old-price{color:#ff6b6b !important;text-decoration-color:#ff4d4d !important;text-decoration-thickness:2px !important;}
.faq-header{margin-bottom:30px !important;}
.faq-section .section-label{font-size:clamp(1.9rem,3vw,2.8rem) !important;line-height:1.1 !important;letter-spacing:-.04em !important;text-transform:none !important;font-family:'Sora',sans-serif !important;font-weight:800 !important;color:#ffffff !important;background:#061a3a !important;border:0 !important;padding:0 !important;}
.buy-now-main{background:linear-gradient(180deg,#43f08a 0%,#20c966 52%,#0c9e4a 100%) !important;border-color:rgba(98,255,167,.78) !important;color:#052111 !important;box-shadow:0 18px 38px rgba(32,201,102,.34),0 0 0 1px rgba(255,255,255,.18) inset,0 0 24px rgba(67,240,138,.18) !important;}
.buy-now-main:hover{background:linear-gradient(180deg,#59ff9b 0%,#2cda73 52%,#10ad52 100%) !important;border-color:rgba(145,255,194,.92) !important;transform:translateY(-2px);box-shadow:0 22px 46px rgba(32,201,102,.44),0 0 30px rgba(67,240,138,.26) !important;}

/* Ajustes finales solicitados: precio, FAQ, botón compra y anclas de menú */
.current-price{color:#ffd166 !important;text-shadow:0 0 18px rgba(255,209,102,.32),0 2px 0 rgba(0,0,0,.16);}
.old-price{color:#ff6b6b !important;text-decoration-color:#ff4d4d !important;text-decoration-thickness:2px !important;}
.faq-header{margin-bottom:30px !important;}
.faq-section .section-label{font-size:clamp(1.9rem,3vw,2.8rem) !important;line-height:1.1 !important;letter-spacing:-.04em !important;text-transform:none !important;font-family:'Sora',sans-serif !important;font-weight:800 !important;color:#ffffff !important;background:#061a3a !important;border:0 !important;padding:0 !important;}
.buy-now-main{background:linear-gradient(180deg,#43f08a 0%,#20c966 52%,#0c9e4a 100%) !important;border-color:rgba(98,255,167,.78) !important;color:#052111 !important;box-shadow:0 18px 38px rgba(32,201,102,.34),0 0 0 1px rgba(255,255,255,.18) inset,0 0 24px rgba(67,240,138,.18) !important;}
.buy-now-main:hover{background:linear-gradient(180deg,#59ff9b 0%,#2cda73 52%,#10ad52 100%) !important;border-color:rgba(145,255,194,.92) !important;transform:translateY(-2px);box-shadow:0 22px 46px rgba(32,201,102,.44),0 0 30px rgba(67,240,138,.26) !important;}

/* Ajustes v07: teléfono/correo sin hipervínculo y footer alineado al bloque superior */
.cta-contact-btn.cta-phone,
.cta-contact-btn.cta-mail{cursor:default;}
.cta-contact-btn.cta-phone:hover,
.cta-contact-btn.cta-mail:hover{transform:none;}
.footer-bleed{
  background:#061a3a !important;
  padding:0 32px 18px !important;
  overflow:visible !important;
}
.footer{
  width:min(calc(100% - 64px), var(--max-w)) !important;
  margin:0 auto !important;
}
@media(max-width:590px){
  .footer-bleed{padding:0 20px 16px !important;}
  .footer{width:100% !important;}
}

/* Ajuste responsive móvil: header y botones de contacto sin desbordes */
@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .topbar {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 12px !important;
    width: min(calc(100% - 24px), var(--max-w)) !important;
    max-width: 100% !important;
    padding: 14px 16px !important;
  }

  .brand-inline {
    min-width: 0 !important;
    gap: 12px !important;
  }

  .brand-mini {
    width: 54px !important;
    height: 54px !important;
    flex: 0 0 54px !important;
  }

  .brand-texts,
  .brand-name {
    min-width: 0 !important;
  }

  .top-cta {
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 48px !important;
    padding: 0 14px !important;
    font-size: 0.86rem !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.15 !important;
  }

  .main-nav {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px 10px !important;
    overflow: visible !important;
    padding: 4px 0 0 !important;
    margin: 0 !important;
  }

  .main-nav a {
    min-width: 0 !important;
    text-align: center !important;
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  .cta-right,
  .cta-contact-btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .cta-contact-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    padding: 14px 16px !important;
  }

  .cta-icon {
    flex: 0 0 44px !important;
  }

  .cta-text {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    white-space: normal !important;
    line-height: 1.18 !important;
  }

  .cta-text small {
    line-height: 1.15 !important;
  }

  .cta-mail .cta-text {
    font-size: clamp(0.78rem, 3.8vw, 0.9rem) !important;
  }
}

/* Ajuste exclusivo móvil: navegación en modo hamburguesa */
.nav-toggle-mobile { display: none; }
@media (max-width: 640px) {
  .topbar {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .topbar .brand-inline {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  .topbar .nav-toggle-mobile {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 48px !important;
    height: 48px !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    cursor: pointer !important;
  }
  .topbar .nav-toggle-mobile span {
    width: 28px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #9fc9ff !important;
    display: block !important;
  }
  .topbar .top-cta {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
  }
  .topbar .main-nav {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    display: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 18px 20px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    overflow: visible !important;
    background: rgba(4, 15, 34, 0.97) !important;
    border: 1px solid rgba(124, 184, 255, 0.28) !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22) !important;
  }
  .topbar .main-nav.open {
    display: flex !important;
  }
  .topbar .main-nav a {
    width: 100% !important;
    text-align: left !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }
}


/* v78 ajuste exclusivo móvil: CTA dentro del menú hamburguesa y menor separación inicial */
@media (max-width: 640px) {
  .topbar > .top-cta {
    display: none !important;
  }

  .topbar .main-nav .top-cta {
    display: inline-flex !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    margin: 4px 0 0 !important;
    padding: 0 16px !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: 13px !important;
    white-space: normal !important;
  }

  .topbar .main-nav {
    grid-row: 2 !important;
  }

  .hero {
    padding-top: 14px !important;
  }

  .hero-grid {
    padding-top: 18px !important;
    gap: 24px !important;
  }

  .hero-visual {
    padding-top: 0 !important;
  }
}

/* v79 ajuste exclusivo móvil: corrige fondo del header en cursos */
@media (max-width: 640px) {
  html,
  body {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 55%, #0d2856 100%) !important;
    overflow-x: hidden !important;
  }

  .topbar {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    margin: 12px auto 0 !important;
    width: min(calc(100% - 24px), var(--max-w)) !important;
  }
}
