:root {
  --blue-deep: #0d2d4a;
  --blue-mid: #1a4a7a;
  --blue-light: #2d7dd2;
  --blue-sky: #4fa3e3;
  --white: #ffffff;
  --off-white: #f0f5fa;
  --gray: #8899aa;
  --gray-light: #c8d8e8;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { background:var(--blue-deep); color:var(--white); font-family:'Montserrat',sans-serif; overflow-x:hidden; }

/* NAV */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:0 40px; height:70px;
  display:flex; align-items:center; justify-content:space-between;
  background:rgba(13,45,74,0.88); backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.nav-logo { height:38px; }
.nav-links { display:flex; gap:32px; list-style:none; align-items:center; }
.nav-links a { color:rgba(255,255,255,0.75); text-decoration:none; font-size:0.68rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; transition:color 0.2s; }
.nav-links a:hover { color:var(--white); }
.nav-cta { padding:10px 26px !important; background:var(--white) !important; color:var(--blue-deep) !important; font-weight:700 !important; }
.nav-cta:hover { background:var(--blue-sky) !important; color:var(--white) !important; }
@media(max-width:768px){ .nav-links { display:none; } nav { padding:0 20px; } }

/* HERO */
.hero { min-height:100vh; position:relative; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:100px 24px 100px; overflow:hidden; }
.hero-bg { position:absolute; inset:0; background-image:url('images/texture-bg.webp'); background-size:cover; background-position:center 40%; filter:brightness(0.52) saturate(1.2); animation: heroZoom 60s ease-in-out infinite alternate; will-change: transform; }
.hero-shimmer { position:absolute; inset:0; pointer-events:none; background: linear-gradient(105deg, transparent 0%, transparent 35%, rgba(255,255,255,0.08) 50%, transparent 65%, transparent 100%); background-size: 250% 100%; animation: heroShimmer 22s ease-in-out infinite; mix-blend-mode: screen; will-change: background-position; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(13,45,74,0.25) 0%, rgba(13,45,74,0.05) 35%, rgba(13,45,74,0.55) 70%, rgba(13,45,74,1) 100%); }

@keyframes heroZoom {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
@keyframes heroShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-shimmer { animation: none; }
}
.hero-content { position:relative; z-index:2; display:flex; flex-direction:column; align-items:center; }
.hero-logo { width:min(520px,85vw); margin-bottom:28px; opacity:0; animation:fadeUp 1.2s ease forwards 0.2s; filter:drop-shadow(0 2px 20px rgba(0,0,0,0.4)); }
.hero-tagline { font-family:'Cormorant Garamond',serif; font-size:clamp(1rem,2.2vw,1.4rem); font-weight:300; font-style:italic; color:rgba(255,255,255,0.85); letter-spacing:0.05em; margin-bottom:36px; opacity:0; animation:fadeUp 1.2s ease forwards 0.5s; }
.hero-meta { display:flex; flex-wrap:wrap; justify-content:center; margin-bottom:44px; opacity:0; animation:fadeUp 1.2s ease forwards 0.75s; border:1px solid rgba(255,255,255,0.18); }
.hero-meta-item { padding:16px 36px; border-right:1px solid rgba(255,255,255,0.18); display:flex; flex-direction:column; gap:4px; }
.hero-meta-item:last-child { border-right:none; }
.meta-label { font-size:0.58rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--blue-sky); font-weight:600; }
.meta-value { font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:400; color:var(--white); }
.hero-cta { opacity:0; animation:fadeUp 1.2s ease forwards 1s; display:flex; flex-direction:column; align-items:center; gap:0; }
.btn-primary { display:inline-block; padding:17px 56px; background:var(--white); color:var(--blue-deep); font-size:0.72rem; font-weight:700; letter-spacing:0.22em; text-transform:uppercase; text-decoration:none; transition:all 0.3s; }
.btn-primary:hover { background:var(--blue-sky); color:var(--white); letter-spacing:0.28em; }
.btn-outline { display:inline-block; padding:15px 40px; background:transparent; color:var(--white); border:1px solid rgba(255,255,255,0.4); font-size:0.7rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; text-decoration:none; transition:all 0.3s; }
.btn-outline:hover { border-color:var(--white); background:rgba(255,255,255,0.08); }
.scroll-hint { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); z-index:2; display:flex; flex-direction:column; align-items:center; gap:8px; opacity:0; animation:fadeUp 1.2s ease forwards 1.4s; }
.scroll-hint span { font-size:0.58rem; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.35); }
.scroll-line { width:1px; height:36px; background:linear-gradient(180deg,rgba(255,255,255,0.35),transparent); animation:scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* SECTIONS */
.section { padding:100px 40px; max-width:1200px; margin:0 auto; }
.section-tag { font-size:0.6rem; letter-spacing:0.28em; text-transform:uppercase; color:var(--blue-sky); font-weight:600; margin-bottom:12px; display:block; }
.section-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,4.5vw,3.5rem); font-weight:300; line-height:1.12; color:var(--white); }
.section-title em { font-style:italic; color:var(--blue-sky); }
.divider { height:1px; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.1),transparent); margin:0 40px; }

/* ABOUT */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
@media(max-width:768px){ .about-grid { grid-template-columns:1fr; gap:40px; } }
.about-text .section-title { margin-bottom:22px; }
.about-body { font-size:0.9rem; line-height:1.95; color:var(--gray-light); font-weight:300; margin-bottom:32px; }
.about-stats { display:grid; grid-template-columns:repeat(4,1fr); border:1px solid rgba(255,255,255,0.1); }
.stat-item { padding:20px 14px; border-right:1px solid rgba(255,255,255,0.1); text-align:center; }
.stat-item:last-child { border-right:none; }
.stat-num { font-family:'Cormorant Garamond',serif; font-size:2.4rem; font-weight:300; color:var(--white); line-height:1; display:block; }
.stat-label { font-size:0.55rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--blue-sky); font-weight:600; margin-top:5px; display:block; }
.about-image { position:relative; }
.about-image img { width:100%; height:420px; object-fit:cover; display:block; }
.about-image-caption { position:absolute; bottom:0; left:0; right:0; padding:18px 22px; background:linear-gradient(transparent,rgba(13,45,74,0.92)); font-size:0.65rem; letter-spacing:0.12em; text-transform:uppercase; color:rgba(255,255,255,0.55); }

/* 5 REASONS */
.reasons-section { background:rgba(0,0,0,0.2); padding:100px 40px; }
.reasons-inner { max-width:1200px; margin:0 auto; }
.reasons-header { text-align:center; margin-bottom:64px; }
.reasons-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:0; border:1px solid rgba(255,255,255,0.1); }
.reason-item { padding:40px 32px; border-right:1px solid rgba(255,255,255,0.1); position:relative; transition:background 0.3s; }
.reason-item:last-child { border-right:none; }
.reason-item:hover { background:rgba(255,255,255,0.03); }
.reason-num { font-family:'Cormorant Garamond',serif; font-size:4rem; font-weight:300; color:rgba(79,163,227,0.15); line-height:1; margin-bottom:16px; }
.reason-title { font-family:'Cormorant Garamond',serif; font-size:1.3rem; font-weight:400; color:var(--white); margin-bottom:12px; line-height:1.3; }
.reason-body { font-size:0.78rem; line-height:1.75; color:var(--gray); font-weight:300; }
@media(max-width:768px){ .reasons-grid { grid-template-columns:1fr; } .reason-item { border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); } .reason-item:last-child { border-bottom:none; } }

/* SPEAKERS */
.speakers-section { padding:100px 0; }
.speakers-header { text-align:center; padding:0 40px; margin-bottom:56px; }
.speakers-scroll-outer { position:relative; }
.speakers-scroll-outer::before, .speakers-scroll-outer::after { content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none; }
.speakers-scroll-outer::before { left:0; background:linear-gradient(90deg,var(--blue-deep),transparent); }
.speakers-scroll-outer::after { right:0; background:linear-gradient(-90deg,var(--blue-deep),transparent); }
.speakers-track { display:flex; gap:20px; overflow-x:auto; padding:12px 80px 28px; scroll-snap-type:x mandatory; scrollbar-width:none; -webkit-overflow-scrolling:touch; }
.speakers-track::-webkit-scrollbar { display:none; }
.speaker-card { flex:0 0 240px; scroll-snap-align:start; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); padding:0 0 22px; position:relative; transition:border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.speaker-card:hover { border-color:rgba(79,163,227,0.5); transform:translateY(-6px); box-shadow:0 20px 40px rgba(0,0,0,0.3); }
.speaker-photo { width:100%; height:240px; background-size:cover; background-position:center top; }
.speaker-info { padding:18px 18px 0; }
.intl-badge { position:absolute; top:10px; right:10px; font-size:0.5rem; letter-spacing:0.13em; text-transform:uppercase; background:var(--blue-mid); border:1px solid var(--blue-sky); color:var(--blue-sky); padding:3px 8px; z-index:1; }
.speaker-name-row { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:3px; }
.speaker-name { font-family:'Cormorant Garamond',serif; font-size:1.12rem; font-weight:500; color:var(--white); line-height:1.3; flex:1; }
.speaker-logo { flex:0 0 auto; max-width:55px; max-height:28px; width:auto; height:auto; object-fit:contain; opacity:0.85; }
.speaker-logo-invert { filter:invert(1) brightness(1.2); }
.speaker-company { font-size:0.6rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--blue-sky); font-weight:600; margin-bottom:10px; line-height:1.4; }
.speaker-bio { font-size:0.73rem; line-height:1.6; color:var(--gray); font-weight:300; margin-bottom:12px; }
.speaker-talk { font-size:0.76rem; font-style:italic; color:rgba(255,255,255,0.6); font-family:'Cormorant Garamond',serif; line-height:1.5; border-top:1px solid rgba(255,255,255,0.07); padding-top:12px; }
.scroll-controls { display:flex; justify-content:center; gap:12px; margin-top:28px; padding:0 40px; }
.scroll-btn { width:48px; height:48px; border:1px solid rgba(255,255,255,0.2); background:transparent; color:var(--white); font-size:1.1rem; cursor:pointer; transition:all 0.3s; display:flex; align-items:center; justify-content:center; }
.scroll-btn:hover { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.5); }

/* PHOTO BAND */
.photo-band { width:100%; height:400px; position:relative; overflow:hidden; }
.photo-band img { width:100%; height:100%; object-fit:cover; object-position:center 30%; filter:brightness(0.6) saturate(1.1); }
.photo-band-overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(13,45,74,0.75) 0%,transparent 55%,rgba(13,45,74,0.5) 100%); display:flex; align-items:center; padding:0 80px; }
.photo-band-text h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:300; line-height:1.25; margin-bottom:14px; max-width:460px; }
.photo-band-text p { font-size:0.85rem; line-height:1.8; color:rgba(255,255,255,0.72); font-weight:300; max-width:400px; }

/* YOUTUBE */
.video-section { padding:80px 0; width:100vw; max-width:100vw; margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw); text-align:center; box-sizing:border-box; }
.video-section .section-tag,
.video-section .section-title { padding:0 24px; }
.video-wrapper { position:relative; padding-bottom:56.25%; height:0; overflow:hidden; width:100%; max-width:100%; margin:0; border:0; }
.video-wrapper iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:0; display:block; }
@media (max-width: 768px) {
  .video-section { padding:48px 0; }
}

/* CTA */
.cta-section { text-align:center; padding:120px 40px; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; inset:0; background-image:url('images/texture-bg.webp'); background-size:cover; background-position:center 60%; filter:brightness(0.18) saturate(0.7); }
.cta-inner { position:relative; z-index:1; }
.cta-body { font-size:0.88rem; color:rgba(255,255,255,0.6); font-weight:300; margin-bottom:44px; line-height:1.85; }
.cta-buttons { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* FAQ */
.faq-section { padding:100px 40px; max-width:800px; margin:0 auto; }
.faq-header { text-align:center; margin-bottom:56px; }
.faq-item { border-bottom:1px solid rgba(255,255,255,0.1); }
.faq-question { width:100%; background:none; border:none; color:var(--white); font-family:'Montserrat',sans-serif; font-size:0.85rem; font-weight:500; text-align:left; padding:22px 0; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:16px; letter-spacing:0.02em; }
.faq-question:hover { color:var(--blue-sky); }
.faq-icon { font-size:1.2rem; color:var(--blue-sky); transition:transform 0.3s; flex-shrink:0; }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.4s ease, padding 0.3s; font-size:0.82rem; line-height:1.85; color:var(--gray-light); font-weight:300; }
.faq-answer.open { max-height:300px; padding-bottom:20px; }
.faq-question.active .faq-icon { transform:rotate(45deg); }

/* FOOTER */
footer { background:rgba(0,0,0,0.5); border-top:1px solid rgba(255,255,255,0.07); padding:48px 40px; }
.footer-top { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; margin-bottom:28px; }
.footer-logo { height:30px; opacity:0.8; }
.footer-social { display:flex; gap:16px; align-items:center; }
.social-link { display:flex; align-items:center; justify-content:center; width:40px; height:40px; border:1px solid rgba(255,255,255,0.2); color:rgba(255,255,255,0.6); text-decoration:none; font-size:1rem; transition:all 0.3s; }
.social-link:hover { border-color:var(--white); color:var(--white); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; padding-top:20px; border-top:1px solid rgba(255,255,255,0.06); }
.footer-copy { font-size:0.65rem; color:rgba(255,255,255,0.25); letter-spacing:0.1em; text-transform:uppercase; }
.footer-legal { display:flex; gap:20px; }
.footer-legal a { font-size:0.65rem; color:rgba(255,255,255,0.3); text-decoration:none; letter-spacing:0.08em; text-transform:uppercase; transition:color 0.2s; }
.footer-legal a:hover { color:rgba(255,255,255,0.7); }

/* WHATSAPP */
.whatsapp-fab { position:fixed; bottom:28px; right:28px; z-index:200; width:58px; height:58px; background:#25d366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,0.4); text-decoration:none; transition:transform 0.3s, box-shadow 0.3s, bottom 0.3s; }
.whatsapp-fab:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-fab svg { width:30px; height:30px; fill:white; }
@media (max-width: 768px) {
  .whatsapp-fab { bottom:96px; right:18px; width:52px; height:52px; }
  .whatsapp-fab svg { width:26px; height:26px; }
  /* Cuando el sticky CTA está oculto (en sección de tickets), el WhatsApp vuelve a su lugar */
  body:has(.sticky-cta.hidden) .whatsapp-fab { bottom:28px; }
}

/* ANIMATIONS */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity:0; transform:translateY(32px); transition:opacity 0.85s ease, transform 0.85s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:0.1s; }
.reveal-d2 { transition-delay:0.2s; }

/* TICKETS */
.tickets-section { padding: 100px 40px; background: rgba(0,0,0,0.2); }
.tickets-inner { max-width: 900px; margin: 0 auto; }
.tickets-header { text-align: center; margin-bottom: 60px; }
.tickets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 680px) {
  .tickets-grid { grid-template-columns: 1fr; }
}
.ticket-card {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.ticket-card:hover { border-color: rgba(255,255,255,0.25); transform: translateY(-4px); }
.ticket-card-vip {
  border-color: rgba(79,163,227,0.45);
  background: rgba(79,163,227,0.05);
}
.ticket-card-vip:hover { border-color: var(--blue-sky); }
.ticket-badge-top {
  position: absolute;
  top: -1px; right: 28px;
  background: var(--blue-sky);
  color: var(--blue-deep);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
}
.ticket-top { margin-bottom: 32px; }
.ticket-tier {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-sky);
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.ticket-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
  margin-bottom: 10px;
}
.price-currency {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  padding-top: 8px;
}
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.ticket-sub {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 300;
  margin-top: 6px;
}
.ticket-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ticket-features li {
  display: flex;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--gray-light);
  font-weight: 300;
  line-height: 1.5;
}
.feat-icon {
  color: var(--blue-sky);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 1px;
}
.ticket-btn {
  display: block;
  text-align: center;
  padding: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.ticket-btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
}
.ticket-btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}
.ticket-btn-primary {
  background: var(--white);
  color: var(--blue-deep);
  border: 1px solid var(--white);
}
.ticket-btn-primary:hover {
  background: var(--blue-sky);
  border-color: var(--blue-sky);
  color: var(--white);
}


/* MODALS */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #0d2d4a;
  border: 1px solid rgba(255,255,255,0.12);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px 44px;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: rgba(79,163,227,0.3) transparent;
}
.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-thumb { background: rgba(79,163,227,0.3); }
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.2s;
  z-index: 1;
}
.modal-close:hover { color: var(--white); }
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}
.modal-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-sky);
  margin-bottom: 36px;
  display: block;
}
.modal-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin: 28px 0 10px;
}
.modal-body p, .modal-body li {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--gray-light);
  font-weight: 300;
}
.modal-body ul {
  padding-left: 18px;
  margin: 8px 0;
}
.modal-body ul li { margin-bottom: 4px; }

/* MAGIC DREAMS LOGO */
.md-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s;
  filter: brightness(1.3);
}
.md-logo:hover { opacity: 1; }
.md-credit {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.md-credit-label {
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ============================================
   CONVERSION ENHANCEMENTS
   ============================================ */

/* Hero countdown — días, horas, minutos, segundos */
.hero-countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px auto 14px;
  padding: 18px 28px;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 6px;
  background: rgba(212,175,55,0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-countdown .cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}
.hero-countdown .cd-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
.hero-countdown .cd-label {
  margin-top: 8px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.85);
}
.hero-countdown .cd-sep {
  color: rgba(212,175,55,0.4);
  font-size: 1.6rem;
  font-weight: 300;
  align-self: flex-start;
  margin-top: 6px;
}
@media (max-width: 600px) {
  .hero-countdown {
    gap: 8px;
    padding: 14px 14px;
    margin: 22px auto 12px;
  }
  .hero-countdown .cd-unit { min-width: 44px; }
  .hero-countdown .cd-num { font-size: 1.85rem; }
  .hero-countdown .cd-label { font-size: 0.52rem; letter-spacing: 0.16em; margin-top: 6px; }
  .hero-countdown .cd-sep { font-size: 1.2rem; margin-top: 4px; }
}
@media (max-width: 380px) {
  .hero-countdown { padding: 12px 10px; gap: 6px; }
  .hero-countdown .cd-unit { min-width: 38px; }
  .hero-countdown .cd-num { font-size: 1.55rem; }
  .hero-countdown .cd-label { font-size: 0.48rem; }
}

/* Hero urgency line */
.hero-urgency {
  margin: 22px auto 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 22px;
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 100px;
  background: rgba(212,175,55,0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: urgencyPulse 3.5s ease-in-out infinite;
}
.hero-urgency .urgency-divider {
  color: rgba(212,175,55,0.55);
  font-weight: 300;
}
.hero-urgency .urgency-spots {
  color: rgba(212,175,55,1);
  font-weight: 600;
}
@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(212,175,55,0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-urgency { animation: none; }
}
@media (max-width: 480px) {
  .hero-urgency {
    font-size: 0.7rem;
    gap: 10px;
    padding: 9px 16px;
    letter-spacing: 0.16em;
  }
}

/* VIP feature highlight - scholarship */
.feat-highlight {
  position: relative;
  padding: 14px 14px 14px 14px !important;
  margin: 6px -14px;
  background: linear-gradient(90deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
  border-left: 2px solid rgba(212,175,55,0.6);
  border-radius: 2px;
}
.feat-highlight .feat-icon {
  color: rgba(212,175,55,0.95) !important;
  font-size: 1rem !important;
}
.feat-highlight strong {
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none; /* hidden on desktop */
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 999;
  background: rgba(255,255,255,0.98);
  color: #0a1733;
  padding: 14px 22px;
  border-radius: 100px;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sticky-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}
.sticky-cta-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.sticky-cta-price {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(10,23,51,0.55);
  letter-spacing: 0.08em;
}
.sticky-cta-arrow {
  font-size: 1.2rem;
  font-weight: 300;
}
.sticky-cta.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

/* Show sticky CTA only on mobile */
@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
  }
  /* Asegurar que el footer no quede tapado por el sticky */
  body { padding-bottom: 80px; }
}

/* ============================================
   AGENDA CTA
   ============================================ */
.agenda-section {
  padding: 110px 32px 90px;
  text-align: center;
}
.agenda-inner {
  max-width: 720px;
  margin: 0 auto;
}
.agenda-inner .section-tag {
  display: block;
  margin-bottom: 18px;
}
.agenda-inner .section-title {
  margin-bottom: 44px;
}
.agenda-btn {
  display: inline-block;
}

@media (max-width: 700px) {
  .agenda-section { padding: 80px 24px 60px; }
}

/* ============================================
   SPONSORS / OUR PARTNERS
   ============================================ */
.sponsors-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px 60px;
}

.sponsors-header {
  text-align: center;
  margin-bottom: 60px;
}

.sponsors-header .section-tag {
  display: block;
}

.sponsors-tier {
  margin-bottom: 64px;
}

.sponsors-tier:last-child {
  margin-bottom: 0;
}

.sponsors-tier-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}

.sponsors-tier-label .hairline {
  height: 1px;
  width: 70px;
  background: rgba(79, 163, 227, 0.35);
}

.sponsors-tier-label .tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-sky);
}

.sponsors-grid {
  display: grid;
  gap: 56px 40px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.sponsors-grid-4 { grid-template-columns: repeat(4, 1fr); }
.sponsors-grid-5 { grid-template-columns: repeat(5, 1fr); }
.sponsors-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 880px; }
.sponsors-grid-1 { grid-template-columns: 1fr; max-width: 280px; }

.sponsor-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  width: 100%;
  padding: 0 16px;
}

.sponsor-cell img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 0.92;
}

.sponsor-cell:hover img {
  opacity: 1;
  transform: scale(1.03);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .sponsors-section { padding: 80px 24px 40px; }
  .sponsors-tier { margin-bottom: 48px; }
  .sponsors-tier-label { margin-bottom: 30px; }
  .sponsors-tier-label .hairline { width: 40px; }

  .sponsors-grid { gap: 36px 24px; max-width: 100%; }
  .sponsors-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .sponsors-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .sponsors-grid-3 { grid-template-columns: repeat(2, 1fr); }

  .sponsor-cell { height: 140px; }
  .sponsor-cell img { max-height: 140px; }
}

@media (max-width: 560px) {
  /* En mobile pequeño: una columna, logos centrados y más grandes */
  .sponsors-grid-5,
  .sponsors-grid-4,
  .sponsors-grid-3,
  .sponsors-grid-1 { grid-template-columns: 1fr; max-width: 320px; }

  .sponsors-grid { gap: 40px 0; }
  .sponsor-cell { height: 140px; }
  .sponsor-cell img { max-height: 140px; }
}

@media (max-width: 480px) {
  .sponsors-section { padding: 60px 20px 32px; }
  .sponsors-tier-label .tier-name { font-size: 0.75rem; letter-spacing: 0.22em; }
  .sponsor-cell { height: 130px; }
  .sponsor-cell img { max-height: 130px; }
}
