/* ══ Reset & Base ══════════════════════════════════════ */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Raleway',sans-serif;
  background:#04101f;
  color:#fff;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
button{font-family:inherit;cursor:pointer;background:none;border:none;color:inherit;}
ul{list-style:none;}

/* ══ Sticky Nav ════════════════════════════════════════ */
.site-nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:900;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 48px;
  background:rgba(10,8,30,.35);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 4px 18px rgba(0,0,0,.2);
  transform:translateY(-100%);
  transition:transform .35s ease;
}
.site-nav.is-solid{
  background:#0a0a2e;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}
.site-nav.is-visible{
  transform:translateY(0);
}
.site-nav-logo img{
  height:74px;
  width:auto;
}
.site-nav-dates{
  font-family:'Cinzel',serif;
  text-align:center;
  white-space:nowrap;
}
.site-nav-dates-until{
  font-size:1.25rem;
  letter-spacing:.04em;
  font-weight:700;
}
.site-nav-venue{
  font-size:1.1rem;
  letter-spacing:.1em;
  color:#ffd23f;
  font-weight:700;
  margin-top:4px;
}
.site-nav-right{
  display:flex;
  align-items:center;
  gap:32px;
  margin-left:auto;
}
.site-nav-ticket-btn{
  position:relative;
  display:block;
  width:230px;
}
.site-nav-discount{
  position:absolute;
  bottom:-10%;
  right:-10%;
  width:38%;
  transform:rotate(10deg);
  filter:drop-shadow(0 3px 6px rgba(0,0,0,.35));
}
.site-nav .site-nav-hamburger{
  position:relative;
  top:auto;
  right:auto;
  width:46px;
  height:34px;
}

@media (max-width:900px){
  .site-nav{padding:14px 20px;}
  .site-nav-dates{display:none;}
  .site-nav-logo img{height:46px;}
  .site-nav-ticket-btn{width:150px;}
  .site-nav-right{gap:24px;}
}

/* ══ Hero ══════════════════════════════════════════════ */
#hero{
  position:relative;
  width:100%;
  height:100vh;
  min-height:560px;
  overflow:hidden;
  isolation:isolate;
}

#hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}
#hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
#hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(to bottom,
    rgba(2,10,20,.55) 0%,
    rgba(2,10,20,0) 18%,
    rgba(2,10,20,0) 70%,
    rgba(2,10,20,.75) 100%);
  pointer-events:none;
}

/* -- Mute button -- */
#mute-btn{
  position:absolute;
  z-index:5;
  left:24px;
  bottom:24px;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
}
#mute-btn svg{
  width:30px;
  height:30px;
  fill:none;
  stroke:#fff;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
#mute-btn .icon-unmuted{display:none;}
#mute-btn.is-unmuted .icon-muted{display:none;}
#mute-btn.is-unmuted .icon-unmuted{display:block;}

/* -- Hamburger -- */
.nav-hamburger{
  position:absolute;
  z-index:5;
  top:50px;
  right:24px;
  width:40px;
  height:30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:7px;
}
.nav-hamburger span{
  display:block;
  width:100%;
  height:3px;
  background:#fff;
  border-radius:2px;
}

/* -- Season badge (nested inside .hero-title-wrap, scales with the logo) -- */
.hero-badge-season{
  position:absolute;
  z-index:1;
  top:-12%;
  left:0%;
  width:32%;
}

/* -- Top-right actions: ticket btn + dates -- */
.hero-actions{
  position:absolute;
  z-index:4;
  top:44px;
  right:66px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}
.hero-ticket-btn{
  position:relative;
  display:block;
  width:290px;
  margin-right:60px;
}
.ticket-discount{
  position:absolute;
  top:auto;
  bottom:-8%;
  right:-8%;
  width:38%;
  transform:rotate(10deg);
  filter:drop-shadow(0 3px 6px rgba(0,0,0,.35));
}
.hero-dates{
  font-family:'Cinzel',serif;
  text-align:center;
  white-space:nowrap;
  padding-top:3px;
  padding-right: 50px;
}
.hero-dates-until{
  font-size:1.15rem;
  letter-spacing:.04em;
}
.hero-dates-until strong{font-weight:700;}
.hero-venue{
  font-size:1.05rem;
  letter-spacing:.1em;
  color:#ffd23f;
  margin-top:4px;
  font-weight: bold;
}

/* -- Title logo -- */
.hero-title-wrap{
  position:absolute;
  z-index:3;
  top:6%;
  left:24px;
  width:min(34vw,460px);
}
.hero-title-wrap h1{
  margin:0;
  font-size:inherit;
  font-weight:inherit;
  line-height:0;
}

/* -- Award seal -- */
.hero-award{
  position: absolute;
  z-index: 4;
  left: 25px;
  bottom: 125px;
  width: 200px;
}

/* -- Sponsors strip -- */
.hero-sponsors{
  position:absolute;
  z-index:4;
  left:0;
  right:0;
  bottom:14px;
  padding:0 24px;
}
.hero-sponsors img{
  width:70%;
  margin:0 auto;
}

/* ══ Sinopsis ══════════════════════════════════════════ */
.sinopsis{
  position:relative;
  padding:110px 24px;
  display:flex;
  justify-content:center;
  overflow:hidden;
}
.sinopsis::before{
  content:'';
  position:absolute;
  inset:0px;
  width:100%;
  background-image:url('../src/bg-sinopsis-dk.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
}
.sinopsis::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(4,14,36,.55);
  z-index:1;
}
.sinopsis-inner{
  position:relative;
  z-index:2;
  max-width:640px;
  width:100%;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:22px;
}
.sinopsis-logo{
  width:min(55%,380px);
}
.sinopsis-tagline{
  font-family:'Cinzel',serif;
  color:#ffd23f;
  font-size:1.3rem;
  font-weight:600;
  line-height:1.45;
  margin-top:-4px;
}
.sinopsis-sparkle{
  font-size:1.4rem;
  margin-top:-10px;
}
.sinopsis-text{
  font-size:1.05rem;
  line-height:1.85;
  color:#f4f4f4;
}
.btn-teaser{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#ffd23f;
  color:#1a0f00;
  font-family:'Cinzel',serif;
  font-weight:700;
  letter-spacing:.03em;
  padding:14px 30px;
  border-radius:8px;
  margin-top:10px;
  transition:transform .2s ease;
}
.btn-teaser:hover{transform:translateY(-2px);}
.btn-teaser svg{
  width:20px;
  height:20px;
  fill:#1a0f00;
}

@media (max-width:900px){
  .sinopsis::before{
    background-image:url('../src/bg-sinopsis-mb.jpg');
    background-size:cover;
    background-position:center;
  }
  .sinopsis{padding:80px 20px;}
  .sinopsis-logo{display:none;}
  .sinopsis-tagline{font-size:1.15rem;}
  .sinopsis-text{font-size:1rem;line-height:1.75;}
}

/* ══ Teaser ════════════════════════════════════════════ */
.teaser{
  position:relative;
  width:100%;
  height:80vh;
  overflow:hidden;
}
.teaser-video-container{
  position:relative;
  width:100%;
  height:100%;
}
.teaser-video{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ══ Fun&Tickets ═══════════════════════════════════════ */
.funtickets{
  position:relative;
  padding:100px 24px;
  display:flex;
  justify-content:center;
  overflow:hidden;
}
.funtickets::before{
  content:'';
  position:absolute;
  inset:0;
  width:100%;
  background-image:url('../src/bg-pops.webp');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
}
.funtickets::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(4,14,36,.7);
  z-index:1;
}
.funtickets-inner{
  position:relative;
  z-index:2;
  max-width:900px;
  width:100%;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:22px;
}
.funtickets-title{
  font-family:'Cinzel',serif;
  color:#ffd23f;
  font-weight:700;
  font-size:1.9rem;
  letter-spacing:.03em;
  text-transform:uppercase;
  line-height:1.4;
}
.funtickets-text{
  font-size:1.05rem;
  line-height:1.85;
  color:#f4f4f4;
  max-width:760px;
}
.funtickets-img{
  width:min(100%,700px);
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.4);
  margin-top:10px;
}

@media (max-width:900px){
  .funtickets{padding:70px 20px;}
  .funtickets-title{font-size:1.4rem;}
  .funtickets-text{font-size:1rem;line-height:1.75;}
}

/* ══ Ven con tu familia ════════════════════════════════ */
.ven{
  position:relative;
  height:60vh;
  min-height:340px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background-image:url('../src/bg-ven.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.ven-banner{
  position:relative;
  width:min(78%,980px);
  padding:50px 40px;
  background:rgba(6,10,20,.72);
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  text-align:center;
  opacity:0;
  transform:translateX(120px);
  transition:opacity .8s ease, transform .8s ease;
}
.ven-banner.is-visible{
  opacity:1;
  transform:translateX(0);
}
.ven-text{
  font-family:'Cinzel',serif;
  font-style:italic;
  font-weight:500;
  font-size:1.6rem;
  color:#f4f4f4;
  line-height:1.6;
}
.ven-highlight{
  color:#ffd23f;
  font-style:normal;
  font-weight:700;
}

@media (max-width:900px){
  .ven{height:auto;min-height:0;padding:60px 0;}
  .ven-banner{width:92%;padding:30px 22px;}
  .ven-text{font-size:1.15rem;}
}

/* ══ Solidario y Accesible ═════════════════════════════ */
.solidario{
  position:relative;
  padding:100px 24px;
  display:flex;
  justify-content:flex-start;
  overflow:hidden;
}
.solidario::before{
  content:'';
  position:absolute;
  inset:0;
  width:100%;
  background-image:url('../src/bg-solidarios.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
}
.solidario::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(4,10,24,.85) 0%, rgba(4,10,24,.6) 45%, rgba(4,10,24,.15) 75%, rgba(4,10,24,0) 100%);
  z-index:1;
}
.solidario-inner{
  position:relative;
  z-index:2;
  max-width:780px;
  width:100%;
  margin-left:min(6vw,90px);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:26px;
}
.solidario-title{
  font-family:'Cinzel',serif;
  color:#ffd23f;
  font-weight:700;
  font-size:2.2rem;
  letter-spacing:.03em;
  text-transform:uppercase;
  line-height:1.3;
}
.solidario-logos{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:48px;
  flex-wrap:wrap;
}
.solidario-logo{width:auto;}
.solidario-logo-once{height:44px;}
.solidario-logo-pinkforce{height:64px;}
.solidario-text{
  font-size:1.05rem;
  line-height:1.85;
  color:#f4f4f4;
}
.solidario-subtitle{
  font-family:'Cinzel',serif;
  color:#ffd23f;
  font-weight:600;
  font-size:1.25rem;
  line-height:1.5;
  margin-top:-4px;
}
.solidario-dates{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:32px;
  flex-wrap:wrap;
  margin-top:-8px;
}
.solidario-date{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  color:#fff;
}
.solidario-date svg{
  width:20px;
  height:20px;
  color:#ffd23f;
}
.solidario-note{
  font-size:.85rem;
  font-style:italic;
  color:#d8d8d8;
  margin-top:-10px;
}
.btn-teaser-accesible{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#ffd23f;
  color:#1a0f00;
  font-family:'Cinzel',serif;
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase;
  padding:16px 34px;
  border-radius:8px;
  margin-top:6px;
  transition:transform .2s ease;
}
.btn-teaser-accesible:hover{transform:translateY(-2px);}
.btn-teaser-accesible svg{
  width:20px;
  height:20px;
  fill:#1a0f00;
}

@media (max-width:900px){
  .solidario{padding:70px 20px;}
  .solidario-title{font-size:1.5rem;}
  .solidario-logos{gap:30px;}
  .solidario-logo-once{height:34px;}
  .solidario-logo-pinkforce{height:50px;}
  .solidario-text{font-size:1rem;line-height:1.75;}
  .solidario-dates{gap:18px 26px;}
}

/* ══ Opiniones (carrusel de vídeos) ════════════════════ */
.opiniones{
  position:relative;
  padding:90px 0 70px;
  overflow:hidden;
}
.opiniones::before{
  content:'';
  position:absolute;
  inset:0;
  width:100%;
  background-image:url('../src/bg-opins..jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
}
.opiniones::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(4,10,24,.6);
  z-index:1;
}
.opiniones-header,
#opi-videos{
  position:relative;
  z-index:2;
}
.opiniones-header{
  text-align:center;
  padding:0 24px;
  margin-bottom:40px;
}
.opiniones-title{
  font-family:'Cinzel',serif;
  font-weight:700;
  font-size:2.2rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:#ffd23f;
}
.opiniones-star{
  font-size:1.3rem;
  margin-top:14px;
}

#opi-videos{
  position:relative;
  max-width:1300px;
  margin:0 auto;
  padding:0 24px;
}
.video-carousel{
  overflow:hidden;
  padding:20px 0 8px;
}
.video-track{
  display:flex;
  gap:20px;
  padding:0 calc(50% - 110px);
  transition:transform .5s ease;
  will-change:transform;
}
.video-slide{
  position:relative;
  flex:0 0 220px;
  width:220px;
  aspect-ratio:9/16;
  border-radius:16px;
  overflow:hidden;
  background:#0b1730;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
  opacity:.45;
  transform:scale(.88);
  transition:opacity .4s ease, transform .4s ease;
}
.video-slide.active{
  opacity:1;
  transform:scale(1);
  z-index:2;
  box-shadow:0 18px 40px rgba(0,0,0,.55);
}
.video-slide.prev,
.video-slide.next{
  opacity:.7;
  transform:scale(.94);
}
.video-slide video,
.video-slide .video-thumbnail{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  background-size:cover;
  background-position:center;
}
.video-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(2,8,16,.28);
  transition:opacity .3s ease;
  z-index:2;
}
.play-button{
  width:60px;
  height:60px;
  border-radius:50%;
  background:rgba(255,210,63,.92);
  position:relative;
  transition:transform .2s ease;
}
.play-button:hover{transform:scale(1.08);}
.play-button::after{
  content:'';
  position:absolute;
  top:50%;
  left:54%;
  transform:translate(-50%,-50%);
  border-style:solid;
  border-width:11px 0 11px 18px;
  border-color:transparent transparent transparent #1a0f00;
}
.video-slide.playing .video-overlay{
  opacity:0;
  pointer-events:none;
}

.carousel-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:30px;
}
.carousel-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#ffd23f;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  line-height:1;
  color:#1a0f00;
  transition:transform .2s ease, background .2s ease;
}
.carousel-btn:hover{
  transform:translateY(-2px);
  background:#ffdd66;
}

.carousel-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:26px;
  flex-wrap:wrap;
  padding:0 24px;
}
.dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:rgba(255,255,255,.3);
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.dot.active{
  background:#ffd23f;
  transform:scale(1.25);
}

@media (max-width:900px){
  .opiniones-title{font-size:1.5rem;}
}
@media (max-width:768px){
  .video-track{gap:15px;padding:0 calc(50% - 112.5px);}
  .video-slide{flex:0 0 225px;width:225px;}
}
@media (max-width:480px){
  .video-track{gap:12px;padding:0 calc(50% - 90px);}
  .video-slide{flex:0 0 180px;width:180px;}
  .carousel-btn{width:38px;height:38px;font-size:1.4rem;}
}
@media (max-width:360px){
  .video-track{padding:0 calc(50% - 80px);}
  .video-slide{flex:0 0 160px;width:160px;}
}

/* ══ Galería ═══════════════════════════════════════════ */
.galeria{
  position:relative;
  padding:90px 0 70px;
  overflow:hidden;
}
.galeria::before{
  content:'';
  position:absolute;
  inset:0;
  width:100%;
  background-image:url('../src/gb-galery.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
}
.galeria::after{
  content:'';
  position:absolute;
  inset:0;
  z-index:1;
}
.galeria-header{
  position:relative;
  z-index:2;
  text-align:center;
  padding:0 24px;
  margin-bottom:44px;
}
.galeria-title{
  font-family:'Cinzel',serif;
  font-weight:700;
  font-size:2.4rem;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.galeria-star{
  font-size:1.3rem;
  margin:14px 0;
}
.galeria-tagline{
  font-family:'Cinzel',serif;
  color:#ffd23f;
  font-size:1.3rem;
  font-weight:600;
}

.galeria-carousel{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:16px;
  width:100%;
  max-width:none;
  margin:0 auto;
  padding:0 16px;
}
.galeria-viewport{
  flex:1;
  overflow:hidden;
}
.galeria-track{
  display:flex;
  transition:transform .45s ease;
}
.galeria-slide{
  flex:0 0 calc(100%/3);
  padding:0 10px;
}
.galeria-slide img{
  width:100%;
  aspect-ratio:3/2;
  object-fit:cover;
  border-radius:14px;
}
.galeria-slide img.lazy-img{
  background:rgba(255,255,255,.06);
  opacity:0;
  transition:opacity .5s ease;
}
.galeria-slide img.lazy-img.is-loaded{
  opacity:1;
}
.galeria-arrow{
  flex:0 0 auto;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.1);
  border-radius:50%;
}
.galeria-arrow svg{width:22px;height:22px;}
.galeria-arrow:hover{background:rgba(255,255,255,.2);}

@media (max-width:900px){
  .galeria-slide{flex:0 0 50%;}
}
@media (max-width:600px){
  .galeria-title{font-size:1.8rem;}
  .galeria-tagline{font-size:1.05rem;}
  .galeria-slide{flex:0 0 100%;}
  .galeria-carousel{gap:6px;padding:0 8px;}
  .galeria-arrow{width:36px;height:36px;}
}

/* ══ Full-screen nav menu ══════════════════════════════ */
.nav-menu{
  position:fixed;
  inset:0;
  background:rgba(4,16,31,.88);
  backdrop-filter:blur(4px);
  z-index:20;
  padding:100px 32px 60px;
  opacity:0;
  visibility:hidden;
  transition:opacity .35s ease;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  overflow-y:auto;
}
.nav-menu.is-open{opacity:1;visibility:visible;}
#nav-close{
  position:absolute;
  top:26px;
  right:24px;
  width:32px;
  height:32px;
  z-index:21;
}
#nav-close span{
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  height:3px;
  background:#fff;
  border-radius:2px;
}
#nav-close span:first-child{transform:rotate(45deg);}
#nav-close span:last-child{transform:rotate(-45deg);}
.nav-menu ul{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:28px;
}
.nav-menu ul a{
  font-family:'Cinzel',serif;
  font-weight:700;
  font-size:1.6rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  text-shadow:0 2px 6px rgba(0,0,0,.5);
}

/* ══ Responsive: tablet & mobile ═══════════════════════ */
@media (max-width:900px){
  .hero-title-wrap{top:auto;bottom:120px;left:0;right:0;width:min(85vw,410px);margin:0 auto;}
  .hero-actions{right:70px;}
  .hero-ticket-btn{width:150px;}
  #mute-btn{top:20px;left:16px;bottom:auto;}
  .hero-award{top:140px;left:5px;bottom:auto;width:6rem;}
}

@media (max-width:600px){
  #hero{height:100vh;min-height:640px;}
  .hero-actions{
    top:20px;right:90px;gap:8px;
  }
  .hero-ticket-btn{width:200px;margin-right:0;}
  .hero-dates{display:none;}
  .nav-hamburger{top:30px;right:16px;}
  #mute-btn{top:20px;left:16px;bottom:auto;}
  .hero-title-wrap{
    top:auto;bottom:70px;left:0;right:0;width:min(85vw,410px);margin:0 auto;
  }
  .hero-award{
    top:130px;left:5px;bottom:auto;width:6rem;
  }
  .hero-sponsors{bottom:10px;padding:0 16px;}
  .hero-sponsors img{width:100%;}

  .hero-scroll-hint{
    display:block;
    position:absolute;
    top:42%;
    z-index:4;
    width:22px;
    opacity:.85;
    animation:hero-scroll-bounce 1.6s ease-in-out infinite;
  }
  .hero-scroll-hint.left{left:16px;}
  .hero-scroll-hint.right{right:16px;}
}

.hero-scroll-hint{display:none;}
@keyframes hero-scroll-bounce{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(10px);}
}

/* ══ Teaser Modal ══════════════════════════════════════ */
body.no-scroll{overflow:hidden;}

.teaser-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:1000;
  align-items:center;
  justify-content:center;
}
.teaser-modal.is-open{display:flex;}
.teaser-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(2,8,16,.9);
}
.teaser-modal-content{
  position:relative;
  width:min(900px,92vw);
  z-index:1;
}
.teaser-modal-video{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:#000;
  border-radius:10px;
  overflow:hidden;
}
.teaser-modal-video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.teaser-modal-close{
  position:absolute;
  top:-44px;
  right:0;
  width:36px;
  height:36px;
  font-size:28px;
  line-height:1;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}
.teaser-modal-close:hover{opacity:.7;}

/* ══ Opiniones del Público ═════════════════════════════ */
.opiniones-publico{
  position:relative;
  height:96vh;
  max-height:96vh;
  padding:60px 24px;
  box-sizing:border-box;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  background-image:url('../src/BG-opiniones-publico.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.opiniones-publico::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(4,10,24,.6);
  z-index:0;
}
.opiniones-publico-title,
.opiniones-publico-inner{
  position:relative;
  z-index:1;
}
.opiniones-publico-title{
  font-family:'Cinzel',serif;
  font-weight:700;
  font-size:2.2rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  text-align:center;
  color:#ffd23f;
  margin-bottom:32px;
  flex:0 0 auto;
}
.opiniones-publico-inner{
  max-width:1200px;
  width:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:3fr 1fr;
  gap:40px;
  align-items:stretch;
  flex:1;
  min-height:0;
}
.opiniones-list{
  display:flex;
  flex-direction:column;
  gap:0;
  height:100%;
  min-height:0;
  overflow-y:auto;
  padding-right:12px;
  scrollbar-width:thin;
  scrollbar-color:#ffd23f rgba(255,255,255,.08);
}
.opiniones-list::-webkit-scrollbar{
  width:8px;
}
.opiniones-list::-webkit-scrollbar-track{
  background:rgba(255,255,255,.08);
  border-radius:8px;
}
.opiniones-list::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg,#ffe58a,#ffd23f);
  border-radius:8px;
}
.opiniones-list::-webkit-scrollbar-thumb:hover{
  background:linear-gradient(180deg,#fff0b3,#ffdc5c);
}
.opinion-card{
  border-top:1px solid rgba(255,210,63,.35);
  padding:24px 0;
}
.opinion-card:last-child{border-bottom:1px solid rgba(255,210,63,.35);}
.opinion-title{
  font-size:1.1rem;
  font-weight:700;
  color:#ffd23f;
  margin-bottom:8px;
}
.opinion-meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}
.opinion-stars{
  color:rgba(255,255,255,.25);
  letter-spacing:2px;
  font-size:.95rem;
}
.opinion-stars .is-filled{color:#ffd23f;}
.opinion-date{
  font-size:.85rem;
  font-style:italic;
  color:#c9c9c9;
}
.opinion-text{
  font-size:1rem;
  line-height:1.7;
  color:#f4f4f4;
  margin-bottom:10px;
  white-space:pre-line;
}
.opinion-toggle{
  color:#ffd23f;
  font-weight:700;
  text-decoration:underline;
  white-space:nowrap;
}
.opinion-toggle:hover{opacity:.8;}
.opinion-author{
  font-weight:700;
  color:#ffd23f;
}
.opiniones-empty{
  color:#d8d8d8;
  font-style:italic;
  padding:20px 0;
}

.opiniones-side{
  height:100%;
  min-height:0;
  display:flex;
  flex-direction:column;
  gap:24px;
}
.opiniones-side-img{
  width:100%;
  flex:1;
  min-height:0;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.4);
}
.btn-dejar-opinion{flex:0 0 auto;}
.btn-dejar-opinion{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#ffd23f;
  color:#1a0f00;
  font-family:'Cinzel',serif;
  font-weight:700;
  letter-spacing:.03em;
  padding:16px 30px;
  border-radius:40px;
  transition:transform .2s ease;
}
.btn-dejar-opinion:hover{transform:translateY(-2px);}

@media (max-width:900px){
  .opiniones-publico{height:auto;max-height:none;padding:60px 20px;overflow:visible;}
  .opiniones-publico-title{font-size:1.5rem;}
  .opiniones-publico-inner{grid-template-columns:1fr;}
  .opiniones-side{height:auto;}
  .opiniones-side-img{flex:none;height:260px;}
  .opiniones-list{height:400px;}
}

/* -- Review modal -- */
.review-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:1000;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.review-modal.is-open{display:flex;}
.review-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(2,8,16,.85);
}
.review-modal-content{
  position:relative;
  z-index:1;
  width:min(560px,100%);
  max-height:90vh;
  overflow-y:auto;
  background:#0e1a3a;
  border:1px solid rgba(255,210,63,.4);
  border-radius:14px;
  padding:36px 32px;
}
.review-modal-close{
  position:absolute;
  top:16px;
  right:16px;
  width:32px;
  height:32px;
  border-radius:50%;
  background:#ffd23f;
  color:#1a0f00;
  font-size:20px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.review-error{
  background:rgba(255,80,80,.15);
  border:1px solid rgba(255,80,80,.4);
  color:#ffb3b3;
  padding:10px 14px;
  border-radius:8px;
  margin-bottom:16px;
  font-size:.9rem;
}
.review-label{
  display:block;
  font-family:'Cinzel',serif;
  color:#ffd23f;
  font-weight:700;
  font-size:.95rem;
  margin-bottom:8px;
  margin-top:18px;
}
.review-label:first-of-type{margin-top:0;}
.review-stars{
  display:flex;
  gap:8px;
  font-size:1.8rem;
  color:rgba(255,255,255,.25);
}
.review-stars span{cursor:pointer;transition:color .15s ease;}
.review-stars span.is-filled{color:#ffd23f;}
#review-form input[type="text"],
#review-form input[type="email"],
#review-form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:8px;
  border:none;
  background:#f4f4f4;
  color:#1a0f00;
  font-family:'Raleway',sans-serif;
  font-size:.95rem;
}
#review-form textarea{
  min-height:110px;
  resize:vertical;
}
.review-checkbox{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:18px;
  font-size:.9rem;
  color:#f4f4f4;
}
.review-checkbox input{width:18px;height:18px;}
.btn-enviar-resena{
  display:block;
  width:100%;
  margin-top:24px;
  background:#ffd23f;
  color:#1a0f00;
  font-family:'Cinzel',serif;
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase;
  padding:16px;
  border-radius:40px;
  transition:transform .2s ease;
}
.btn-enviar-resena:hover{transform:translateY(-2px);}
.btn-enviar-resena:disabled{opacity:.6;transform:none;}

/* ══ Elenco ═══════════════════════════════════════════ */
.elenco{
  position:relative;
  padding:90px 24px;
  overflow:hidden;
}
.elenco::before{
  content:'';
  position:absolute;
  inset:0;
  width:100%;
  background-image:url('../src/elenco/bg-elenco.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
}
.elenco-title{
  position:relative;
  z-index:2;
  font-family:'Cinzel',serif;
  font-weight:700;
  font-size:2.2rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  text-align:center;
  color:#ffd23f;
  margin-bottom:48px;
}
.elenco-panel{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:0 auto;
  padding:40px 24px;
  border-radius:20px;
  background:#00000063;
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}
.elenco-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px 16px;
}
.elenco-card{
  text-align:center;
}
.elenco-card-photo{
  position:relative;
  width:190px;
  height:190px;
  margin:0 auto 16px;
  border-radius:50%;
  overflow:hidden;
  cursor:pointer;
  border:2px solid rgba(255,210,63,.5);
}
.elenco-card-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(1);
  transition:filter .3s ease, transform .3s ease;
}
.elenco-card-photo:hover img{
  filter:grayscale(0);
  transform:scale(1.05);
}
.elenco-card-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:28px;
  height:28px;
  border-radius:50%;
  background:rgba(0,0,0,.6);
  color:#fff;
  font-size:1.2rem;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}
.elenco-card-arrow:hover{background:rgba(0,0,0,.8);}
.elenco-card-arrow.prev{left:-4px;}
.elenco-card-arrow.next{right:-4px;}
.elenco-card-name{
  font-family:'Cinzel',serif;
  font-weight:700;
  text-transform:uppercase;
  font-size:.95rem;
  color:#fff;
  margin-bottom:4px;
}
.elenco-card-role{
  font-size:.85rem;
  color:#d8d8d8;
}

@media (max-width:900px){
  .elenco{padding:70px 20px;}
  .elenco-panel{padding:28px 16px;}
  .elenco-title{font-size:1.5rem;margin-bottom:36px;}
  .elenco-grid{grid-template-columns:repeat(2,1fr);gap:28px 16px;}
  .elenco-card-photo{width:140px;height:140px;}
}

/* -- Elenco modal -- */
.elenco-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:1000;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.elenco-modal.is-open{display:flex;}
.elenco-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(2,8,16,.85);
}
.elenco-modal-content{
  position:relative;
  z-index:1;
  width:min(900px,100%);
  max-height:90vh;
  overflow-y:auto;
  background:#0e1a3a;
  border:1px solid rgba(255,210,63,.4);
  border-radius:14px;
  display:grid;
  grid-template-columns:280px 1fr;
  scrollbar-width:thin;
  scrollbar-color:#ffd23f rgba(255,255,255,.08);
}
.elenco-modal-content::-webkit-scrollbar{
  width:8px;
}
.elenco-modal-content::-webkit-scrollbar-track{
  background:rgba(255,255,255,.08);
  border-radius:8px;
}
.elenco-modal-content::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg,#ffe58a,#ffd23f);
  border-radius:8px;
}
.elenco-modal-content::-webkit-scrollbar-thumb:hover{
  background:linear-gradient(180deg,#fff0b3,#ffdc5c);
}
.elenco-modal-close{
  position:absolute;
  top:16px;
  right:16px;
  z-index:2;
  background:#ffd23f;
  color:#1a0f00;
  font-family:'Cinzel',serif;
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase;
  font-size:.8rem;
  padding:8px 20px;
  border-radius:20px;
}
.elenco-modal-close:hover{transform:translateY(-1px);}
.elenco-modal-photo{
  background:rgba(255,255,255,.04);
  padding:56px 24px 32px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  border-radius:14px 0 0 14px;
}
.elenco-modal-photo img{
  width:160px;
  height:160px;
  border-radius:50%;
  object-fit:cover;
  filter:grayscale(1);
  margin-bottom:10px;
}
#elenco-modal-name{
  font-family:'Cinzel',serif;
  font-size:1.3rem;
  color:#fff;
}
#elenco-modal-role{
  color:#ffd23f;
  font-weight:600;
  font-size:.95rem;
}
.elenco-modal-bio{
  padding:56px 32px 32px;
}
.elenco-modal-bio p{
  margin-bottom:14px;
  line-height:1.7;
  color:#f4f4f4;
  font-size:.95rem;
}
.elenco-modal-bio p:last-child{margin-bottom:0;}

@media (max-width:700px){
  .elenco-modal-content{grid-template-columns:1fr;}
  .elenco-modal-photo{border-radius:14px 14px 0 0;padding:48px 24px 24px;}
  .elenco-modal-bio{padding:24px;}
}

/* ══ Equipo Creativo ═══════════════════════════════════ */
.equipo-creativo{
  position:relative;
  padding:70px 24px;
  overflow:hidden;
}
.equipo-creativo::before{
  content:'';
  position:absolute;
  inset:0;
  width:100%;
  background-image:url('../src/bg-equipocreativo.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
}
.equipo-creativo::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(4,10,24,.72);
  z-index:1;
}
.equipo-creativo-title{
  position:relative;
  z-index:2;
  font-family:'Cinzel',serif;
  font-weight:700;
  font-size:2.2rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  text-align:center;
  color:#ffd23f;
  margin-bottom:44px;
}
.equipo-creativo-grid{
  position:relative;
  z-index:2;
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px 28px;
}
.equipo-creativo-item{
  text-align:center;
}
.equipo-creativo-name{
  font-family:'Cinzel',serif;
  font-weight:700;
  text-transform:uppercase;
  font-size:1rem;
  color:#fff;
  line-height:1.4;
  margin-bottom:8px;
}
.equipo-creativo-role{
  font-size:.85rem;
  font-weight:700;
  text-transform:uppercase;
  color:#ffd23f;
  line-height:1.4;
}

@media (max-width:900px){
  .equipo-creativo{padding:56px 20px;}
  .equipo-creativo-title{font-size:1.5rem;margin-bottom:32px;}
  .equipo-creativo-grid{grid-template-columns:repeat(2,1fr);gap:28px 20px;}
}

/* ══ FAQs ══════════════════════════════════════════════ */
.faqs{
  position:relative;
  padding:90px 24px;
  overflow:hidden;
}
.faqs::before{
  content:'';
  position:absolute;
  inset:0;
  width:100%;
  background-image:url('../src/bg-faqs.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
}
.faqs::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(4,10,24,.72);
  z-index:1;
}
.faqs-title{
  position:relative;
  z-index:2;
  font-family:'Cinzel',serif;
  font-weight:700;
  font-size:2.2rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  text-align:center;
  color:#ffd23f;
  margin-bottom:48px;
}
.faqs-columns{
  position:relative;
  z-index:2;
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 60px;
}
.faqs-subtitle{
  font-family:'Cinzel',serif;
  font-weight:700;
  font-size:1.2rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#ffd23f;
  margin-bottom:16px;
}
.faq-item{
  border-top:1px solid rgba(255,210,63,.3);
  padding:16px 0;
}
.faq-item:last-of-type{border-bottom:1px solid rgba(255,210,63,.3);}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-weight:700;
  font-size:1rem;
  color:#fff;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:'+';
  flex:0 0 auto;
  width:24px;
  height:24px;
  border-radius:50%;
  background:rgba(255,210,63,.15);
  color:#ffd23f;
  font-size:1.1rem;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.faq-item[open] summary::after{content:'–';}
.faq-answer{
  padding-top:14px;
  color:#e6e6e6;
  font-size:.95rem;
  line-height:1.75;
}
.faq-answer p{margin-bottom:10px;}
.faq-answer p:last-child{margin-bottom:0;}
.faq-answer ul{
  padding-left:20px;
  margin-top:6px;
}
.faq-answer li{margin-bottom:8px;}
.faq-answer li:last-child{margin-bottom:0;}

@media (max-width:900px){
  .faqs{padding:60px 20px;}
  .faqs-title{font-size:1.5rem;margin-bottom:32px;}
  .faqs-columns{grid-template-columns:1fr;gap:36px 0;}
}

/* ══ Contacto ══════════════════════════════════════════ */
.contacto{
  position:relative;
  padding:90px 24px;
  overflow:hidden;
}
.contacto::before{
  content:'';
  position:absolute;
  inset:0;
  width:100%;
  background-image:url('../src/bg-pops.webp');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
}
.contacto-title{
  position:relative;
  z-index:2;
  font-family:'Cinzel',serif;
  font-weight:700;
  font-size:2rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  text-align:center;
  color:#ffd23f;
  margin-bottom:40px;
}
.contacto-title:not(:first-of-type){margin-top:70px;}
.contacto-row{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px 32px;
}
.contacto-block{
  display:flex;
  align-items:flex-start;
  gap:16px;
}
.contacto-icon{
  flex:0 0 auto;
  width:34px;
  height:34px;
  color:#f4f4f4;
  margin-top:2px;
}
.contacto-heading{
  font-family:'Cinzel',serif;
  font-weight:700;
  font-size:1rem;
  letter-spacing:.03em;
  text-transform:uppercase;
  color:#ffd23f;
  margin-bottom:8px;
  line-height:1.4;
}
.contacto-text{
  font-size:.95rem;
  line-height:1.7;
  color:#f4f4f4;
}
.contacto-text a{
  color:#f4f4f4;
  text-decoration:underline;
}
.contacto-text a:hover{color:#ffd23f;}

@media (max-width:900px){
  .contacto{padding:60px 20px;}
  .contacto-title{font-size:1.4rem;margin-bottom:32px;}
  .contacto-title:not(:first-of-type){margin-top:50px;}
  .contacto-row{grid-template-columns:1fr;gap:28px;}
}

/* ══ Footer ════════════════════════════════════════════ */
.site-footer{
  background:#04101f;
  padding:60px 24px 32px;
  text-align:center;
}
.footer-logo{
  width:min(90%,220px);
  margin:0 auto 32px;
}
.footer-social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-bottom:40px;
}
.footer-social a{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease;
}
.footer-social a:hover{transform:translateY(-2px);}
.footer-social svg{
  width:22px;
  height:22px;
  fill:#04101f;
}
.footer-sponsors{
  width:min(100%,900px);
  margin:0 auto 40px;
}
.footer-legal{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  margin-bottom:20px;
}
.footer-legal a{
  color:#ffd23f;
  font-weight:600;
  font-size:.9rem;
}
.footer-legal a:hover{text-decoration:underline;}
.footer-credit{
  font-size:.75rem;
  letter-spacing:.05em;
  color:#9aa0ad;
}
.footer-credit a{color:#9aa0ad;}
.footer-credit a:hover{color:#ffd23f;}

@media (max-width:900px){
  .site-footer{padding:48px 20px 28px;}
  .footer-legal{gap:16px 22px;}
}

