@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500&display=swap');
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --red:#f30076;--gold:#ffea13;--blue:#1A3FA0;--black:#0a0a0a;--dark:#111;--card:#181818;
  --white:#fff;--muted:#777;--border:rgba(255,255,255,0.08);
}
html{scroll-behavior:smooth;scroll-padding-top:80px}
body{background:var(--black);color:var(--white);font-family:'Inter',sans-serif;overflow-x:hidden;overflow-y:auto}
body.no-animations .hero .hero-divider,
body.no-animations .hero .cd-block,
body.no-animations .hero-title,
body.no-animations .hero-date-big,
body.no-animations .hero-venue,
body.no-animations .hero-cta,
body.no-animations .cd-label,
body.no-animations .particles .particle{
  animation:none !important;
  opacity:0 !important;
  transform:translateY(22px) !important;
}
body.no-animations .particles .particle{opacity:0 !important;}

/* NAV */
nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:center;
  height:70px;
  padding:0 1.4rem;
  background:transparent;
  overflow:visible;
  transition:background .25s ease, box-shadow .25s ease;
}
nav.nav-scrolled{
  background:var(--black);
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.nav-logo{display:flex;align-items:center;justify-content:center;text-decoration:none;position:relative;filter:drop-shadow(0 0 8px #1A3FA0);overflow:visible;height:70px}
.nav-logo img{width:64px;height:64px;object-fit:contain;position:relative;top:60%;transform:translateY(-50%) scale(3.5);transform-origin:center center;z-index:2;transition:transform .2s ease}

/* Hamburger button */
.nav-burger{
  display:flex;flex-direction:column;justify-content:center;gap:5px;
  width:38px;height:38px;padding:8px;
  background:transparent;border:none;cursor:pointer;
  position:absolute;right:1.4rem;top:50%;transform:translateY(-50%);
  z-index:101;
}
.nav-burger span{
  display:block;width:100%;height:2px;background:var(--white);
  border-radius:2px;transition:transform .3s,opacity .3s;
}
.nav-burger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-burger.is-open span:nth-child(2){opacity:0}
.nav-burger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Fullscreen menu */
.nav-drawer{
  position:fixed;top:73px;left:0;right:0;bottom:0;z-index:98;
  background:rgba(10,10,10,.72);
  display:flex;flex-direction:column;
  align-items:center;
  justify-content:safe center;
  text-align:center;
  padding:1.2rem 1.8rem;
  opacity:0;visibility:hidden;
  transition:opacity .35s ease, background .35s ease;
  overflow-y:auto;
}
.nav-drawer.is-open{opacity:1;visibility:visible}
.nav-drawer-inner{
  display:flex;flex-direction:column;align-items:center;
  width:100%;
}

.nav-drawer-links{
  display:flex;flex-direction:column;gap:.85rem;
  margin-bottom:1.4rem;
}
.nav-drawer-links a{
  font-family:'Bebas Neue',sans-serif;
  font-size:1.4rem;letter-spacing:.02em;
  color:var(--white);text-decoration:none;
}
.nav-drawer-links a:active{color:var(--gold)}

.nav-drawer-actions{
  display:flex;flex-direction:column;gap:.6rem;
  width:100%;max-width:300px;
}
.nav-drawer-actions .btn-red{text-align:center;padding:.65rem 1.8rem}



/* HERO */
.hero{
  position:relative;min-height:100svh;
  display:flex;flex-direction:column;
  text-align:center;overflow:hidden;
  padding-top:3.4rem;
}
.hero-bg{
  position:absolute;inset:0;z-index:0;
  background-image:url('../img/hero2.jpeg');
  background-size:cover;background-position:center 28%;
  filter:brightness(.55) saturate(1.1);
}
@media (orientation: portrait), (max-width: 960px) {
  .hero-bg{
    background-image:url('../img/hero1.jpeg');
  }
}
.hero-bg::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to bottom, rgba(8,8,8,.15) 0%, rgba(8,8,8,.35) 45%, rgba(8,8,8,.75) 75%, var(--black) 100%);
}



.particles{position:absolute;inset:0;pointer-events:none;z-index:2;overflow:hidden}
.particle{position:absolute;border-radius:1px;animation:pfan linear infinite;opacity:0}
@keyframes pfan{0%{transform:translateY(-20px) rotate(0);opacity:0}10%{opacity:1}90%{opacity:1}100%{transform:translateY(100vh) rotate(720deg);opacity:0}}

.hero-bottom{
  position:relative;z-index:10;
  flex:1;
  display:flex;flex-direction:column;align-items:center;justify-content:flex-end;
  height:60svh;
  padding:1rem 1.5rem 6rem;
}

.hero-content-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  width:100%;
  max-width:1180px;
  margin:0 auto;
  flex-wrap:wrap;
}
.hero-left,
.hero-center,
.hero-right{
  flex:1 1 0;
  min-width:240px;
}
.hero-left,
.hero-right{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:0 1.5rem;
  text-align:center;
}
.hero-center{
  display:flex;
  flex:2 1 0;
  flex-direction:row;
  align-items:center;
  justify-content:center;
  gap:1.5rem;
  margin-left:0;
}
.hero-left{flex:0.9; padding-left:0;}
.hero-right{flex:0.9; padding-right:0;}

.hero-left,
.hero-center,
.hero-right,
.eyebrow,
.sec-title,
.hero-title,
.promo-head,
.about-card-title,
.hero-venue,
.section .sec-body,
.about-card-desc{
  text-align:center;
}

@media (max-width: 960px) {
  .hero-center{
    flex-direction:column;
    margin-left:0;
    gap:.7rem;
    align-items:center;
    justify-content:center;
    width:100%;
  }
}

.cd-block--bottom{
  position:absolute;
  bottom:0;left:0;right:0;
  margin:0;
  padding:1.2rem 1.5rem 1rem;
  background:transparent;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  text-align:center;
  animation:fadeUp .8s .32s ease both;
}

@media (max-width: 960px) {
  .hero-content-row{
    flex-direction:column;
    align-items:center;
    justify-content:center;
  }
  .hero-left,
  .hero-center,
  .hero-right{
    min-width:unset;
    width:100%;
    flex:1 1 100%;
    max-width:100%;
    padding:0;
  }
  .hero-center{
    margin-left:0;
    justify-content:center;
    align-items:center;
  }
  .hero-left,
  .hero-right{
    align-items:center;
  }
  .hero-left{padding-left:0;}
  .hero-right{padding-right:0;}
  .hero-location{display:flex;justify-content:center;width:100%;margin-bottom:.7rem;margin-left:0;}
  .hero-cta{width:100%;justify-content:center;}
}

.edition-badge{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(232,0,29,.15);border:1px solid rgba(232,0,29,.4);
  color:var(--red);font-size:.6rem;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;padding:.3rem .8rem;border-radius:999px;
  margin-bottom:.9rem;animation:fadeUp .8s ease both;
}
.blink-dot{width:6px;height:6px;border-radius:50%;background:var(--red);animation:blink 1.2s infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0}}



.hero-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(3.2rem,14vw,6.5rem);
  line-height:.95;letter-spacing:.03em;
  animation:fadeUp .8s .15s ease both;
  margin-bottom:.4rem;
}
.hero-title em{font-style:normal;color:var(--red);display:block}
.hero-title span{font-size:.55em;letter-spacing:.1em;color:rgba(255,255,255,.55)}

.hero-divider{
  width:60px;height:2px;margin:0 auto .5rem;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  animation:fadeUp .8s .2s ease both;
}

.hero-date-row{
  display:flex;align-items:center;justify-content:center;gap:.4rem;
}
.hero-date-logo{
  width:clamp(40px,12vw,70px);height:auto;
  filter:drop-shadow(0 0 10px rgba(232,0,29,.3));
}
.hero-date-big{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(2.4rem,11vw,4.6rem);
  line-height:1;color:var(--white);
  animation:fadeUp .8s .25s ease both;
  position:relative;display:inline-block;
}
.hero-date-big::after{
  content:'';position:absolute;bottom:-3px;left:5%;right:5%;height:3px;
  background:linear-gradient(90deg,transparent,var(--red),var(--gold),var(--red),transparent);
  background-size:200% 100%;animation:shimmer 2s linear infinite;
}
@keyframes shimmer{0%{background-position:-200% 0}100%{background-position:200% 0}}

.hero-venue{
  display:inline-flex;align-items:center;gap:.4rem;
  color:var(--gold);font-size:.74rem;font-weight:500;
  margin-top:.7rem;animation:fadeUp .8s .3s ease both;
}

.hero-cta{
  display:flex;gap:.5rem;justify-content:center;flex-wrap:wrap;
  margin-top:.3rem;animation:fadeUp .8s .38s ease both;
}
.btn-red{
  background:var(--red);color:var(--white);font-weight:700;font-size:.82rem;
  letter-spacing:.1em;text-transform:uppercase;padding:.8rem 1.8rem;
  border-radius:3px;border:none;cursor:pointer;text-decoration:none;
  transition:transform .2s,box-shadow .2s;display:inline-block;
}
.btn-red:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(232,0,29,.4)}

/* === MODAL FORMULARIO === */
.form-modal-overlay{
  position:fixed;inset:0;z-index:9000;
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(6px);
  display:flex;align-items:center;justify-content:center;
  padding:1rem;
  opacity:0;pointer-events:none;
  transition:opacity .25s ease;
}
.form-modal-overlay.is-open{opacity:1;pointer-events:all}
.form-modal{
  background:var(--dark);
  border:1px solid var(--border);
  border-radius:16px;
  width:100%;max-width:560px;
  max-height:90vh;
  overflow:hidden;
  display:flex;flex-direction:column;
  transform:translateY(18px);
  transition:transform .25s ease;
  position:relative;
}
.form-modal-overlay.is-open .form-modal{transform:none}
.form-modal-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.1rem 1.4rem;
  border-bottom:1px solid var(--border);
  flex-shrink:0;
}
.form-modal-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:1.3rem;letter-spacing:.04em;
  color:var(--white);
}
.form-modal-title em{font-style:normal;color:var(--red)}
.form-modal-close{
  background:none;border:none;cursor:pointer;
  color:var(--muted);
  display:flex;align-items:center;justify-content:center;
  width:32px;height:32px;border-radius:50%;
  transition:color .15s,background .15s;
}
.form-modal-close:hover{color:var(--white);background:rgba(255,255,255,.08)}
.form-modal-close svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round}
.form-modal-body{
  flex:1;overflow:hidden;position:relative;
  min-height:460px;
}
.form-modal-loader{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  flex-direction:column;gap:.8rem;
  color:var(--muted);font-size:.8rem;
  background:var(--dark);
  transition:opacity .3s;
}
.form-modal-loader.hidden{opacity:0;pointer-events:none}
.loader-ring{
  width:32px;height:32px;border-radius:50%;
  border:2px solid var(--border);
  border-top-color:var(--blue);
  animation:spin .7s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
.form-modal-iframe{
  width:100%;height:100%;min-height:460px;
  border:none;background:transparent;
  display:block;
}

@keyframes fadeUp{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:none}}

@keyframes sline{0%{transform:scaleY(0);transform-origin:top}50%{transform:scaleY(1);transform-origin:top}51%{transform:scaleY(1);transform-origin:bottom}100%{transform:scaleY(0);transform-origin:bottom}}

/* COUNTDOWN - inline, debajo de la fecha en el hero */
.cd-label{
  position:relative;
  font-size:.62rem;letter-spacing:.3em;text-transform:uppercase;
  color:var(--muted);margin-bottom:.7rem;
}
.cd-label::before,
.cd-label::after{
  content:'★';
  color:var(--blue);
  margin:0 .5rem;
  opacity:.9;
  animation:blink 1.2s infinite;
  display:inline-block;
}
.cd-label::before{margin-left:0;}
.cd-label::after{margin-right:0;}
.cd-row{
  display:flex;align-items:baseline;justify-content:center;
  gap:.35rem;flex-wrap:nowrap;
}
.cd-unit{display:flex;flex-direction:column;align-items:center;gap:.15rem}
.cd-num{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(1.3rem,4.8vw,2rem);
  line-height:1;color:var(--gold);
  min-width:1.6em;text-align:center;
  transition:color .15s;
}
.cd-lbl{font-size:.55rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted)}
.cd-sep{
  font-family:'Bebas Neue',sans-serif;font-size:clamp(1.4rem,4.5vw,2rem);
  color:var(--blue);align-self:flex-start;margin-top:.05em;
  animation:blink 1s infinite;
}
.cd-block{
  margin-top:1rem;
  animation:fadeUp .8s .32s ease both;
}

/* FULL-BLEED PROMO STRIP */
.promo-strip{
  display:grid;grid-template-columns:1fr 1fr;
  min-height:420px;
}
.promo-half{
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;
  padding:1.5rem;
}
.promo-half img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center top;
  filter:brightness(.45) saturate(.7);
  transition:transform .4s ease;
}
.promo-half:hover img{transform:scale(1.04)}
.promo-half-content{position:relative;z-index:2}
.promo-tag{
  font-size:.6rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--red);margin-bottom:.4rem;
}
.promo-head{
  font-family:'Bebas Neue',sans-serif;font-size:1.6rem;
  line-height:1.05;letter-spacing:.03em;
}
.promo-head em{font-style:normal;color:var(--gold)}

/* SECTION */
.section{padding:4rem 1.4rem;padding-bottom:calc(4rem + env(safe-area-inset-bottom));position:relative;z-index:2}
.section::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,transparent,var(--blue) 50%,transparent);
  opacity:.7;
}
.section-glow::before{
  content:'';position:absolute;top:0;left:0;right:0;height:140px;
  background:linear-gradient(180deg,rgba(26,63,160,.5),transparent);
  opacity:1;pointer-events:none;
}
.eyebrow{font-size:.65rem;letter-spacing:.3em;text-transform:uppercase;color:var(--red);margin-bottom:.8rem;font-weight:600}
.sec-title{
  font-family:'Bebas Neue',sans-serif;font-size:clamp(2rem,8vw,3.2rem);
  line-height:1.05;letter-spacing:.02em;margin-bottom:1rem;
}
.sec-title em{font-style:normal;color:var(--gold)}
.sec-body{color:rgba(255,255,255,.6);font-size:.95rem;line-height:1.75;max-width:520px;text-align:center;margin:0 auto}

.about-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:.9rem;margin-top:2.2rem;
}
.founders-stickers{
  display:flex;flex-wrap:wrap;justify-content:center;gap:1rem;
  margin:1.6rem 0 1.8rem;
}
.founders-sticker{
  position:relative;
  display:inline-flex;
  border-radius:14px;
  overflow:hidden;
  transform:scale(1);
  transition:transform .35s ease, box-shadow .35s ease;
  animation:sticker-breathe 6s ease-in-out infinite;
}
.founders-sticker:hover,
.founders-sticker:focus-within{
  transform:scale(1.08);
}
.founders-stickers img{
  width:clamp(90px,11vw,120px);
  height:auto;border-radius:12px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 12px 30px rgba(0,0,0,.24);
  display:block;
  position:relative;
  z-index:1;
  transition:transform .35s ease, box-shadow .35s ease, filter .35s ease;
}
.founders-sticker:hover img,
.founders-sticker:focus-within img{
  transform:scale(1.05);
  box-shadow:0 18px 38px rgba(0,0,0,.32);
  filter:brightness(1.05);
}
.founders-sticker::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:14px;
  box-shadow: inset 4px 0 0 rgba(26,63,160,.75), inset -4px 0 0 rgba(26,63,160,.75), inset 0 4px 0 rgba(26,63,160,.75), inset 0 -4px 0 rgba(26,63,160,.75);
  pointer-events:none;
  z-index:2;
}
.founders-sticker{cursor:pointer}
.founders-sticker:focus-visible{outline:2px solid rgba(255,255,255,.9);outline-offset:4px}
.sticker-modal-overlay{
  position:fixed !important;
  top:0;left:0;right:0;bottom:0;
  width:100vw;min-height:100vh;
  display:none;
  align-items:center;
  justify-content:center;
  padding:1.2rem;
  background:rgba(0,0,0,.94);
  z-index:2147483647 !important;
  pointer-events:auto;
}
.sticker-modal-overlay.is-open{display:flex}
.sticker-modal-card{
  width:min(560px,100%);
  max-height:min(92vh,760px);
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(10,10,10,.98);
  box-shadow:0 32px 80px rgba(0,0,0,.45);
  position:relative;
  z-index:2;
}
.sticker-modal-image-wrap{
  width:100%;
  aspect-ratio:1/1;
  max-height:420px;
  overflow:hidden;
}
.sticker-modal-image-wrap img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .4s ease;
}
.sticker-modal-card:hover .sticker-modal-image-wrap img{transform:scale(1.03)}
.sticker-modal-content{padding:1rem 1rem 1.7rem}
.sticker-modal-title{font-family:'Bebas Neue',sans-serif;font-size:1.8rem;line-height:1.05;margin-bottom:.85rem;text-transform:none;font-weight:400}
.sticker-modal-title a{color:var(--white);text-decoration:none;border-bottom:1px solid rgba(255,255,255,.35);transition:color .2s ease, border-color .2s ease;}
.sticker-modal-title a:hover,
.sticker-modal-title a:focus{color:var(--blue);border-color:var(--blue);outline:none}
.sticker-modal-desc{color:rgba(255,255,255,.76);line-height:1.75;font-size:.98rem}
.sticker-modal-close{
  position:absolute;top:.9rem;right:.9rem;
  width:42px;height:42px;
  border:none;border-radius:50%;
  background:rgba(255,255,255,.08);
  color:var(--white);
  font-size:1.4rem;line-height:1;
  cursor:pointer;transition:background .2s ease,transform .2s ease;
  z-index:10;
  pointer-events:auto;
}
.sticker-modal-close:hover{background:rgba(255,255,255,.16);transform:scale(1.05)}
@keyframes sticker-breathe{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.02)}
}
.about-card{
  position:relative;border:1px solid var(--border);
  border-radius:6px;overflow:hidden;
  padding:1rem .9rem 1.1rem;
  display:flex;flex-direction:column;justify-content:flex-end;
  min-height:230px;
  animation:fadeUp .6s ease both;
}
.about-card-img{
  position:absolute;inset:0;z-index:0;
  background:linear-gradient(160deg,#1a1a1a 0%,#0a0a0a 70%);
  opacity:.9;
}
.about-card--red .about-card-img{
  background:linear-gradient(165deg,rgba(26,63,160,.45),#0a0a0a 65%);
}
.about-card--gold .about-card-img{
  background:linear-gradient(165deg,rgba(255,234,19,.22),#0a0a0a 65%);
}
.about-card--bg1 .about-card-img{
  background-image:url('img/stikers1.png');
  background-size:cover;
  background-position:center;
  opacity:.72;
}
.about-card-icon{
  position:relative;z-index:1;
  width:34px;height:34px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:1.5px solid currentColor;
  margin-bottom:.7rem;
}
.about-card--red .about-card-icon{color:var(--blue)}
.about-card--gold .about-card-icon{color:var(--gold)}
.about-card-title{
  position:relative;z-index:1;
  font-family:'Bebas Neue',sans-serif;
  font-size:1.3rem;letter-spacing:.02em;
  margin-bottom:.3rem;
}
.about-card--red .about-card-title{color:var(--blue)}
.about-card--gold .about-card-title{color:var(--gold)}
.about-card-desc{
  position:relative;z-index:1;
  font-size:.72rem;line-height:1.4;
  color:rgba(255,255,255,.75);
}
@media (max-width:640px){
  .about-grid{grid-template-columns:repeat(2,1fr)}
  .about-card{min-height:190px}
}


/* ==================== EDITIONS CAROUSEL ==================== */
.editions-section{
  padding:4rem 0;
  position:relative;z-index:2;
  overflow:hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(255,215,0,.04) 0%, transparent 40%),
    radial-gradient(circle at 10% 95%, rgba(232,0,29,.06) 0%, transparent 45%),
    var(--black);
}
.editions-section::before{
  content:'';position:absolute;
  width:70vw;height:70vw;max-width:480px;max-height:480px;
  background-image:url('img/editions-bg.png');
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  top:-10%;right:-15%;
  transform:rotate(12deg);
  opacity:.04;
  filter:brightness(0) invert(1);
  pointer-events:none;
}
.editions-section::after{
  content:'';position:absolute;top:0;left:0;right:0;height:140px;
  background:linear-gradient(180deg,rgba(26,63,160,.5),transparent);
  opacity:1;z-index:3;pointer-events:none;
}
.brands-section{
  position:relative;
  overflow:hidden;
  padding:2.5rem 1.4rem;
  background:var(--black);
}
.brands-section::after{
  content:none;
}
.brands-section::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg, transparent, rgba(26,63,160,1) 38%, rgba(26,63,160,1) 62%, transparent);
  opacity:.9;
  width:auto;max-width:none;
  transform:none;
  filter:none;
  z-index:10;
}
.brands-section .eyebrow,
.brands-section .sec-title{
  text-align:center;
}
.brands-section .sec-title{
  margin-bottom:2rem;
}
.editions-head{
  padding:0 1.4rem;margin-bottom:2.2rem;
}
.editions-head .sec-body{margin-top:.6rem}

.editions-track{
  display:flex;gap:1.1rem;
  overflow-x:auto;
  scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
  padding:0 1.4rem 1.4rem;
  scrollbar-width:none;
  scroll-behavior:smooth;
}
.editions-track::-webkit-scrollbar{display:none}

.ed-card{
  flex:0 0 78%;
  max-width:340px;
  scroll-snap-align:center;
  display:flex;flex-direction:column;
  border-radius:10px;
  overflow:hidden;
  background:var(--card);
  border:1px solid var(--border);
}

.ed-card-img-wrap{
  position:relative;
  aspect-ratio:4/5;
  overflow:hidden;
}

.ed-card-img-wrap img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(.9) contrast(1.05);
  transform:scale(1.18);
  opacity:0;
  transition:transform 1.1s cubic-bezier(.16,1,.3,1), filter .4s ease, opacity .6s ease;
}
.ed-card-img-wrap.revealed img{
  transform:scale(1);
  opacity:1;
}
.ed-card:hover .ed-card-img-wrap img{
  transform:scale(1.06);
  filter:saturate(1.05) contrast(1.08);
}

.ed-card-shade{
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(8,8,8,.85) 0%, rgba(8,8,8,.05) 55%, transparent 100%);
  pointer-events:none;
}
.ed-card-shade-next{
  background:linear-gradient(to top, rgba(8,8,8,.9) 0%, rgba(232,0,29,.08) 55%, transparent 100%);
}

.ed-card-soon{
  position:absolute;top:.9rem;right:.9rem;
  background:var(--red);color:var(--white);
  font-size:.62rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;
  padding:.35rem .8rem;border-radius:999px;
  animation:pulse-pill 2s infinite;
}

.ed-card-info{
  padding:1.2rem 1.2rem 1.5rem;
}
.ed-card-tag{
  display:inline-block;
  font-size:.62rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;
  color:var(--red);margin-bottom:.5rem;
}
.ed-card-tag-gold{color:var(--gold)}
.ed-card-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:1.6rem;line-height:1.1;letter-spacing:.02em;
  margin-bottom:.5rem;
}
.ed-card-title em{font-style:normal;color:var(--gold)}
.ed-card-desc{
  font-size:.82rem;line-height:1.6;color:rgba(255,255,255,.5);
}

.ed-card-next{
  border-color:rgba(232,0,29,.35);
}

.editions-dots{
  display:flex;justify-content:center;gap:.4rem;margin-top:.5rem;
}
.editions-dots span{
  width:6px;height:6px;border-radius:50%;
  background:rgba(255,255,255,.18);
  transition:background .3s,transform .3s;
}
.editions-dots span.active{
  background:var(--red);
  transform:scale(1.3);
}

@media(min-width:640px){
  .ed-card{flex:0 0 300px}
}

/* STATS */
.stats-row{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1px;
  background:var(--border);border:1px solid var(--border);
  border-radius:7px;overflow:hidden;margin-top:2.5rem;
}
.stat-cell{background:var(--dark);padding:1.4rem 1rem;text-align:center}
.stat-num{font-family:'Bebas Neue',sans-serif;font-size:2.6rem;line-height:1;color:var(--white)}
.stat-num span{color:var(--red)}
.stat-lbl{font-size:.62rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted);margin-top:.25rem}

/* FIGHTERS GRID */
.fighters-section{background:var(--dark);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.fighters-img-wrap{
  margin-top:2rem;border-radius:8px;overflow:hidden;
  border:1px solid var(--border);position:relative;
}
.fighters-img-wrap img{width:100%;display:block;filter:saturate(.85)}
.fighters-overlay{
  position:absolute;bottom:0;left:0;right:0;
  padding:1.2rem;
  background:linear-gradient(to top,rgba(8,8,8,.95) 0%,transparent 100%);
}
.fighters-overlay p{
  font-size:.68rem;letter-spacing:.2em;text-transform:uppercase;
  color:rgba(255,255,255,.5);
}
.fighters-overlay strong{color:var(--gold);display:block;font-family:'Bebas Neue',sans-serif;font-size:1.1rem;letter-spacing:.05em}

/* STEPS */
.steps{margin-top:2rem}
.step{
  display:flex;gap:1.1rem;padding:1.3rem 0;
  border-bottom:1px solid var(--border);
  opacity:0;transform:translateX(-18px);
  transition:opacity .5s ease,transform .5s ease;
}
.step.visible{opacity:1;transform:none}
.step:last-child{border-bottom:none}
.step-num{font-family:'Bebas Neue',sans-serif;font-size:2.8rem;line-height:1;color:rgba(26,63,160,.32);min-width:44px;transition:color .3s}
.step:hover .step-num{color:var(--blue)}
.step-title{font-weight:700;font-size:.95rem;margin-bottom:.25rem}
.step-desc{font-size:.83rem;color:rgba(255,255,255,.48);line-height:1.6}

/* ITINERARY TIMELINE */
.itin-progress{height:2px;background:var(--border);border-radius:4px;overflow:hidden;max-width:240px;margin:1.6rem auto 0}
.itin-progress-fill{height:100%;width:0%;background:var(--blue)}
.itin-track{
  display:flex;align-items:center;gap:.9rem;
  overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;scroll-behavior:smooth;touch-action:pan-x;
  padding:1rem 1.4rem 1.6rem;scrollbar-width:none;
  cursor:grab;
}
.itin-track:active{cursor:grabbing}
.itin-track::-webkit-scrollbar{display:none}
.itin-card{
  flex:0 0 168px;scroll-snap-align:center;scroll-snap-stop:always;
  background:var(--card);border:1px solid var(--border);border-radius:10px;
  padding:1.1rem .9rem;text-align:center;transition:opacity .25s;
}
.itin-time{font-family:'Bebas Neue',sans-serif;font-size:1.7rem;color:var(--blue);line-height:1}
.itin-title{font-weight:700;font-size:.86rem;margin-top:.45rem;line-height:1.3}
.itin-sub{font-size:.68rem;color:rgba(255,255,255,.45);margin-top:.3rem}
.itin-chip{flex:0 0 102px;scroll-snap-align:none;text-align:center;opacity:.65}
.itin-chip-dot{width:7px;height:7px;border-radius:50%;background:var(--gold);margin:0 auto .4rem}
.itin-chip-label{font-size:.64rem;font-weight:700;color:rgba(255,255,255,.6);line-height:1.3}
.itin-chip-sub{font-size:.6rem;color:rgba(255,255,255,.4);line-height:1.3;margin-top:.15rem}
.itin-hint{font-size:.7rem;color:rgba(255,255,255,.4);text-align:center;margin-top:.3rem}
@media(min-width:640px){.itin-card{flex:0 0 200px}}

/* Ensure itinerary has extra bottom space on small screens so following
  brand marquee or other sections don't visually overlap it. Also bring
  the timeline above following content. */
#itinerario{position:relative;z-index:3}
.itin-track{position:relative;z-index:4}
.marquee-track{position:relative;z-index:1}

/* PROX EDICION BANNER */
.prox-banner{
  position:relative;overflow:hidden;
  min-height:420px;display:flex;align-items:flex-end;
}
.prox-banner img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center 20%;
  filter:brightness(.38) saturate(.5);
}
.prox-banner-content{
  position:relative;z-index:2;padding:2rem 1.4rem;width:100%;
  background:linear-gradient(to top,rgba(8,8,8,.9) 0%,transparent 60%);
}
.prox-hashtag{
  display:inline-block;
  background:rgba(60,100,220,.25);border:1px solid rgba(60,100,220,.5);
  color:#5b8dff;font-size:.72rem;font-weight:700;letter-spacing:.2em;
  text-transform:uppercase;padding:.35rem .9rem;border-radius:3px;
  margin-bottom:.8rem;
}
.prox-title{
  font-family:'Bebas Neue',sans-serif;font-size:clamp(2.2rem,10vw,3.8rem);
  line-height:1.05;letter-spacing:.03em;
}
.prox-title em{font-style:normal;color:var(--red)}

/* EVENT BLOCK */
.event-block{
  background:var(--dark);border:1px solid var(--border);
  border-top:3px solid var(--red);border-radius:7px;
  padding:1.6rem 1.4rem;margin-top:1.8rem;
  width:100%;max-width:760px;margin:1.8rem auto 0;
}
.event-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem}
.ev-label{font-size:.62rem;letter-spacing:.22em;text-transform:uppercase;color:var(--muted);margin-bottom:.35rem}
.ev-value{font-family:'Bebas Neue',sans-serif;font-size:1.45rem;letter-spacing:.04em;line-height:1.2}
.ev-value em{font-style:normal;color:var(--gold)}

@media(min-width: 1024px) {
  .event-block {
    width:50%;
    max-width:640px;
    margin-left:auto;
    margin-right:auto;
  }
}

footer{
  padding:3rem 1.4rem 2rem;
  background:#090909;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.82);
}
.footer-branding{
  display:flex;
  gap:1rem;
  align-items:center;
  justify-content:center;
  margin-bottom:1.5rem;
}
.footer-branding img{
  width:54px;
  height:54px;
  object-fit:contain;
}
.footer-branding-copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  color:rgba(255,255,255,.9);
}
.footer-branding-copy span{
  font-family:'Bebas Neue',sans-serif;
  font-size:1.35rem;
  letter-spacing:.05em;
}
.footer-branding-copy small{
  color:rgba(255,255,255,.6);
  font-size:.78rem;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:1rem 1.5rem;
  margin-bottom:1.5rem;
}
.footer-links a{
  color:rgba(255,255,255,.75);
  text-decoration:none;
  font-size:.95rem;
  transition:color .2s ease;
}
.footer-links a:hover{
  color:var(--blue);
}
.footer-legal{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.75rem;
  align-items:center;
  color:rgba(255,255,255,.55);
  font-size:.78rem;
}
.footer-legal a{
  color:rgba(255,255,255,.75);
  text-decoration:none;
}
.footer-legal a.footer-credit-link{
  color:var(--blue);
  font-weight:700;
}
.footer-legal a:hover{
  color:var(--blue);
}

/* CTA */
.cta-section{
  background:#1A3FA0;
  padding:4.5rem 1.4rem;
  text-align:center;position:relative;overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;
  width:90vw;height:90vw;max-width:600px;max-height:600px;
  background-image:url(../images/cta-background.jpg);
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  top:50%;left:50%;
  transform:translate(-50%,-50%) rotate(-8deg);
  opacity:.07;
  filter:brightness(0) invert(1);
  pointer-events:none;
  z-index:0;
}
.cta-section::after{
  content:'';position:absolute;inset:0;
  z-index:1;
  background:linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 18%, transparent 32%, transparent 68%, rgba(0,0,0,.45) 85%, rgba(0,0,0,.65) 100%);
  pointer-events:none;
}
.cta-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(2.3rem,10vw,4rem);line-height:1;margin-bottom:.8rem;position:relative;z-index:2}
.cta-sub{font-size:.88rem;opacity:.88;margin-bottom:2rem;position:relative;z-index:2}
.btn-white{
  background:var(--white);color:var(--blue);font-weight:900;
  font-size:.88rem;letter-spacing:.1em;text-transform:uppercase;
  padding:.95rem 2.2rem;border-radius:3px;border:none;cursor:pointer;
  text-decoration:none;display:inline-block;position:relative;z-index:2;
  transition:transform .2s,box-shadow .2s;
}
.btn-white:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(0,0,0,.3)}

/* FOOTER */
footer{
  padding:2.2rem 1.4rem;text-align:center;
  border-top:1px solid var(--border);position:relative;z-index:2;
}
.footer-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  position:relative;
  overflow:visible;
  height:70px;
  margin-bottom:.5rem;
  filter:drop-shadow(0 0 8px #1A3FA0);
}
.footer-logo img{
  width:64px;
  height:64px;
  object-fit:contain;
  position:relative;
  top:60%;
  transform:translateY(-50%) scale(3.5);
  transform-origin:center center;
  z-index:2;
  transition:transform .2s ease;
}
.footer-meta{font-size:.72rem;color:var(--muted);line-height:1.9}
.footer-meta a{color:var(--gold);text-decoration:none}

/* === FOOTER SOCIAL ICONS === */
.footer-socials{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1rem;
  margin:1.2rem 0;
}
.footer-social-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid var(--border);
  color:var(--white);
  transition:border-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-social-link:hover{
  border-color:var(--blue);
  color:var(--blue);
  transform:translateY(-2px);
}
.footer-social-link svg{
  width:18px;
  height:18px;
  fill:currentColor;
}
.footer-legal{
  margin-top:1rem;
  padding-top:1rem;
  border-top:1px solid var(--border);
  font-size:.68rem;
  color:var(--muted);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:.5rem;
}
.footer-legal a{
  color:var(--muted);
  text-decoration:none;
}
.footer-legal a:hover{color:var(--white)}
.footer-legal .dot{opacity:.5}

/* REVEAL */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .6s ease,transform .6s ease}
.reveal.visible{opacity:1;transform:none}

@media(max-width:400px){
  .event-grid{grid-template-columns:1fr}
  .stats-row{grid-template-columns:1fr}
  .promo-strip{grid-template-columns:1fr}
  .promo-half{min-height:280px}
}
.marquee-track{width:100vw;overflow:hidden;padding:1rem 0;margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%)}
.marquee-inner{display:flex;gap:1.2rem;width:max-content;animation:marquee 22s linear infinite}
.marquee-inner:hover{animation-play-state:paused}
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.brand-pill{
  display:inline-flex;align-items:center;justify-content:center;
  width:200px;
  height:110px;
  padding:.6rem 1rem;
  border:none;
  background:transparent;
  flex:0 0 auto;
}
.brand-pill img{
  width:100%;
  height:100%;
  max-width:none;
  max-height:none;
  object-fit:contain;
  display:block;
}

/* === PREMIUM SPONSORS (static top strip) === */
.premium-strip{display:flex;gap:1rem;align-items:center;justify-content:center;padding:.5rem 1rem;border-bottom:1px solid rgba(255,255,255,0.04)}
.premium-strip .premium-pill{width:120px;height:60px;display:inline-flex;align-items:center;justify-content:center;padding:.4rem}
.premium-strip .premium-pill img{width:100%;height:100%;object-fit:contain;display:block}
.premium-strip .big-premium{width:240px;height:120px}
@media (max-width:600px){
  .premium-strip{flex-wrap:wrap;gap:.5rem;padding:.45rem .6rem;transform:translateX(-10%)}
  .premium-strip .premium-pill{width:90px;height:48px}
  .premium-strip .big-premium{width:180px;height:96px}
}
.invert-logo{filter:invert(1) brightness(1.2) saturate(1.1)}

/* On small screens, stop using full-bleed marquee to avoid overlapping previous section */
@media (max-width: 640px) {
  .marquee-track{
    width:100vw;overflow:hidden;padding:1rem 0;margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%)}
  .marquee-inner{animation:marquee 22s linear infinite;}
}

/* === NAV MAGENTA === */
@media (max-width: 960px) {
  /* keep nav transparent on small screens; .nav-scrolled will add the solid background */
  nav{background:transparent}
}
.nav-live,.blink-dot,.nav-links a{color:var(--white) !important}

/* === HERO FECHA BLOCK === */
.hero-location{
  display:inline-flex;
  align-items:center;
  margin:0 auto;
}
.hero-location-inner{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.28rem .65rem .28rem .45rem;
  border:1px solid #ffea13;
  transform:skewX(-18deg);
  background:transparent;
}
.hero-location-inner svg{
  flex-shrink:0;
  transform:skewX(18deg);
  width:13px;
  height:13px;
}
.hero-location-text{
  display:flex;
  flex-direction:column;
  align-items:center;
  transform:skewX(18deg);
  font-size:.55rem;
  font-weight:700;
  letter-spacing:.1em;
  color:#ffea13;
  line-height:1.35;
}

.hero-fecha-block{
  display:flex;
  align-items:center;
  gap:.6rem;
  position:relative;
  margin-bottom:.5rem;
}
.hero-anio-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-dia{
  display:flex;
  align-items:center;
  gap:.2rem;
  line-height:1;
}
.hero-num{
  font-size:clamp(1.8rem,6vw,2.8rem);
  font-weight:900;
  color:#fff;
  line-height:1;
  letter-spacing:-.02em;
  display:inline-block;
  transform:scaleY(2);
  transform-origin:center center;
}
.hero-mes{
  font-size:clamp(1.8rem,6vw,2.8rem);
  font-weight:900;
  color:var(--red);
  line-height:1;
  letter-spacing:-.03em;
  display:inline-block;
  transform:scaleY(2);
  transform-origin:center center;
  text-shadow:0 0 4px rgba(243,0,118,.4);
}
.hero-anio{
  font-weight:900;
  color:var(--gold);
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  letter-spacing:.05em;
  font-size:clamp(1rem,3.2vw,1.4rem);
  line-height:1;
  white-space:nowrap;
  text-shadow:0 0 4px rgba(255,234,19,.4);
}

.anio-inner{
  display:inline-block;
  transform:scaleX(2);
  transform-origin:center center;
  -webkit-text-stroke:0.8px #0a0a0a;
  color:var(--gold);
}
