* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root{
  --gold: #d8b36a;
  --ink: #060606;
  --paper: #f5e6c8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--paper);
  background: var(--ink);
}

/* ESCENARIO */
.stage {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding: 46px 16px 90px;
}

/* Capas del escenario fijas (para que el telón/foco siga mientras haces scroll) */
.backdrop,
.spotlight,
.smoke,
.blackout-layer {
  position: fixed;
  inset: 0;
}

.backdrop {
  background:
    radial-gradient(circle at center, rgba(120, 20, 20, 0.45), rgba(10, 5, 5, 0.95) 65%),
    linear-gradient(180deg, #1a0505, #050202);
}

.spotlight {
  background:
    radial-gradient(circle at center, rgba(140, 20, 20, 0.35), rgba(0,0,0,0.9) 65%);
  pointer-events: none;
  animation: focusPulse 6s ease-in-out infinite alternate;
}

@keyframes focusPulse {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

/* HUMO */
.smoke {
  background:
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.04), transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.03), transparent 55%);
  animation: smokeMove 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes smokeMove {
  from { transform: translateY(0); }
  to   { transform: translateY(-20px); }
}

/* APAGADO DE SALA */
.blackout-layer {
  background: #000;
  z-index: 10;
  opacity: 1;
  transition: opacity 2.2s ease;
  pointer-events: none;
}

.stage.ready .blackout-layer {
  opacity: 0;
}

/* CONTENIDO */
.content {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  z-index: 2;
}

/* PANEL (ES/EN) */
.panel {
  width: 100%;
  opacity: 0;
  transform: translateY(26px);
  pointer-events: none;
  transition:
    opacity 0.55s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Contenedor “tarjeta” transparente */
.wrap{
  border: none;
  border-radius: 0;
  padding: 34px;
  background: transparent;     /* <- clave */
  backdrop-filter: none;       /* <- clave */
  -webkit-backdrop-filter: none;
  box-shadow: none;            /* por si añadiste sombras */
}

/* HEADER */
.top {
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(216, 179, 106, 0.18);
  margin-bottom: 18px;
}

.logo {
  max-width: 180px;
  margin: 0 auto 12px;
  display: block;
  animation: logoIn 1s ease;
}

@keyframes logoIn {
  from { opacity: 0; transform: translateY(26px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.slogan {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* HERO */
.hero h1{
  font-size: 26px;
  line-height: 1.15;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.lead{
  text-align: center;
  color: rgba(245, 230, 200, 0.92);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.hero-media{
  margin: 16px 0 16px;
}

.hero-ctas{
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-bottom: 18px;
}

.micro{
  font-size: 12px;
  opacity: 0.75;
}

/* CTA */
.cta {
  width: 100%;
  max-width: 520px;
  padding: 16px 18px;
  border: 2px solid var(--gold);
  border-radius: 18px;
  font-weight: 700;
  letter-spacing: 1.1px;
  color: var(--gold);
  text-decoration: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.25s ease;
}

.cta:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}

.cta-sub{
  font-weight: 600;
  letter-spacing: 0.4px;
  opacity: 0.95;
}

.cta-secondary{
  max-width: 420px;
  padding: 14px 16px;
}

/* SECCIONES */
.section{
  padding: 18px 0;
  border-top: 1px solid rgba(216, 179, 106, 0.12);
}

.section:first-of-type{
  border-top: none;
}

.section h2{
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--paper);
}

.section p{
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 230, 200, 0.92);
  margin-bottom: 12px;
}

.note{
  color: var(--gold);
  font-weight: 600;
  margin-top: 6px;
}

.fine{
  font-size: 12px;
  opacity: 0.8;
  margin-top: 6px;
}

/* LISTAS */
.bullets{
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 12px 0 12px;
}

.bullets li{
  padding-left: 14px;
  position: relative;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(245, 230, 200, 0.95);
}

.bullets li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.bullets-2col{
  grid-template-columns: 1fr 1fr;
}

.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* PRECIOS */
.prices{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.price-item{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(216, 179, 106, 0.2);
  border-radius: 16px;
  background: rgba(0,0,0,0.18);
}

.price-item .tag{
  color: rgba(245, 230, 200, 0.92);
  font-weight: 600;
}

.price-item .val{
  color: var(--gold);
  font-weight: 700;
}

/* MEDIA / IMÁGENES */
.media img,
.hero-media img{
  width: 100%;
  max-height: 500px;
  height: 500px;          /* fuerza altura consistente */
  object-fit: cover;      /* recorta sin deformar */
  object-position: center;/* centra el encuadre */
  display: block;
  margin: 0 auto;
  border-radius: 0px;
  background: rgba(0,0,0,0.22);
}

/* en móvil, un poco menos de alto */
@media (max-width: 720px){
  .media img,
  .hero-media img{
    height: 360px;
    max-height: 360px;
  }
}
@media (max-width: 420px){
  .media img,
  .hero-media img{
    height: 300px;
    max-height: 300px;
  }
}

/* IFRAME */
.ticket-embed{
  margin-top: 14px;
  border: 1px solid rgba(216, 179, 106, 0.22);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.ticket-embed iframe{
  width: 100%;
  height: 720px;
  border: 0;
  display: block;
}

.embed-placeholder{
  padding: 26px;
  text-align: center;
  display: grid;
  gap: 10px;
  color: rgba(245, 230, 200, 0.9);
}

.embed-placeholder i{
  font-size: 28px;
  color: var(--gold);
}

/* FOOTER */
.footer{
  padding-top: 18px;
  border-top: 1px solid rgba(216, 179, 106, 0.18);
  margin-top: 12px;
  text-align: center;
}

.claim {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 16px;
}

.social {
  display: flex;
  gap: 26px;
  justify-content: center;
  margin-bottom: 14px;
}

.social a {
  font-size: 34px;
  color: var(--paper);
  transition: transform 0.25s ease;
  text-decoration: none;
}

.social a:hover {
  transform: translateY(-4px);
}

a{
  color: var(--gold);
  text-decoration: none;
}

.contact {
  font-size: 14px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact p b{
  padding: 3px 0;
}

/* IDIOMA */
.lang {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 20;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(216, 179, 106, 0.22);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
}

.lang button {
  background: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
  opacity: 0.55;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.lang button.active {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 720px){
  .wrap{ padding: 18px; }
  .hero h1{ font-size: 22px; }
  .bullets-2col{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .ticket-embed iframe{ height: 640px; }
}

@media (max-width: 420px){
  .cta{ padding: 15px 14px; }
  .ticket-embed iframe{ height: 620px; }
}
.wrap,
.media img,
.hero-media img,
.price-item,
.ticket-embed,
.lang {
  border: none !important;
}
/* ====== MÁS ESPACIO ENTRE BLOQUES ====== */
.wrap{
  padding: 120px; /* antes 26px */
}

.section{
  padding: 34px 0; /* antes 18px 0 */
}

.section h2{
  margin-bottom: 30px;
}

.section p{
  margin-bottom: 30px;
}

.hero{
  padding: 10px 0 18px;
}

.hero-media{
  margin: 22px 0 22px;
}
.panel{
  display: none;
}

.panel.active{
  display: block;
  animation: panelIn .45s ease;
}

@keyframes panelIn{
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}


.hero h1{
  margin-top: 0px !important;     /* reduce aire tras el header */
}
@media (max-width: 800px){
  .content{
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 800px){
  .wrap{
    padding-left: 18px;
    padding-right: 18px;
  }
}
.hero h1,
.section h2{
  color: var(--gold) !important;
}
/* ====== TÍTULOS MÁS GRANDES ====== */
.hero h1{
  font-size: 34px;   /* antes 26px */
  line-height: 1.15;
}

.section h2{
  font-size: 22px;   /* antes 18px */
  line-height: 1.25;
}

/* Responsive equilibrado */
@media (max-width: 800px){
  .hero h1{
    font-size: 28px;
  }
  .section h2{
    font-size: 20px;
  }
}

@media (max-width: 420px){
  .hero h1{
    font-size: 24px;
  }
  .section h2{
    font-size: 18px;
  }
}
/* ====== MOVIMIENTO CONTINUO (SIN PAUSAS) ====== */
.backdrop{
  animation: backdropDrift 26s linear infinite;
  will-change: transform;
}

.spotlight{
  animation: spotlightDrift 14s linear infinite;
  will-change: transform, opacity;
}

.smoke{
  animation: smokeDrift 18s linear infinite;
  will-change: transform;
}

/* Recorridos en bucle (vuelve al origen al final) */
@keyframes backdropDrift{
  0%   { transform: translate3d(-12px,  8px, 0) scale(1.03); }
  25%  { transform: translate3d( 10px,  4px, 0) scale(1.04); }
  50%  { transform: translate3d( 14px, -10px,0) scale(1.05); }
  75%  { transform: translate3d( -6px, -8px,0) scale(1.04); }
  100% { transform: translate3d(-12px,  8px, 0) scale(1.03); }
}

@keyframes spotlightDrift{
  0%   { transform: translate3d( 18px, -8px,0); opacity: .75; }
  25%  { transform: translate3d( -6px, -2px,0); opacity: .85; }
  50%  { transform: translate3d(-18px, 10px,0); opacity: 1; }
  75%  { transform: translate3d(  8px, 14px,0); opacity: .88; }
  100% { transform: translate3d( 18px, -8px,0); opacity: .75; }
}

@keyframes smokeDrift{
  0%   { transform: translate3d(-22px, 14px,0); }
  25%  { transform: translate3d( 10px,  6px,0); }
  50%  { transform: translate3d( 22px,-12px,0); }
  75%  { transform: translate3d(-10px,-16px,0); }
  100% { transform: translate3d(-22px, 14px,0); }
}

/* Respetar usuarios con reduced motion */
@media (prefers-reduced-motion: reduce){
  .backdrop, .spotlight, .smoke{ animation: none !important; }
}
/* ====== DIFUMINADO ARRIBA + ABAJO EN IMÁGENES ====== */
.media img,
.hero-media img{
  -webkit-mask-image: linear-gradient(to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 14%,
    rgba(0,0,0,1) 78%,
    rgba(0,0,0,0) 100%
  );
  mask-image: linear-gradient(to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 14%,
    rgba(0,0,0,1) 78%,
    rgba(0,0,0,0) 100%
  );

  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
/* ====== QUITAR BORDE DORADO DE IMÁGENES ====== */
.media img,
.hero-media img{
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.media img,
.hero-media img{
  background: transparent !important;
}
.section{
  border: none !important;
}
.loading-turitop{
	padding:0px;
	background-color:black !important;
}
.embed-placeholder{
  background: transparent !important;
  padding:0px !important;
}
  :root{
    --ci-bg: rgba(10,10,10,.92);
    --ci-gold: #CB0935;     /* color principal */
    --ci-gold-2: #8f0624;   /* tono más oscuro para el degradado */
    --ci-text: #f3f0e8;
  }

  .ci-cookie{
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9999;
    display: none;
    padding: 18px 14px;
    background: var(--ci-bg);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(203,9,53,.35);
  }

  .ci-cookie__wrap{
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
  }

  .ci-cookie__brand{
    display:flex;
    align-items:center;
    gap: 12px;
    min-width: 0;
  }

  .ci-cookie__mark{
    width: 38px;
    height: 38px;
    border-radius: 999px;
    position: relative;
    border: 1px solid rgba(203,9,53,.6);
    box-shadow: 0 0 0 3px rgba(203,9,53,.08) inset;
    flex: 0 0 auto;
  }

  .ci-cookie__mark:before{
    content:"";
    position:absolute;
    inset: 8px 7px 8px 7px;
    border-radius: 999px 999px 6px 6px;
    background:
      radial-gradient(circle at 50% 90%, rgba(203,9,53,.35), transparent 60%),
      linear-gradient(90deg, rgba(203,9,53,.18), rgba(203,9,53,.05));
    clip-path: polygon(50% 100%, 0% 55%, 10% 35%, 30% 22%, 50% 18%, 70% 22%, 90% 35%, 100% 55%);
  }

  .ci-cookie__text{
    min-width: 0;
    line-height: 1.35;
    color: var(--ci-text);
    font-size: 14px;
  }

  .ci-cookie__title{
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(243,240,232,.85);
    margin: 0 0 6px 0;
  }

  .ci-cookie__text p{
    margin: 0;
    color: rgba(243,240,232,.86);
  }

  .ci-cookie__text a{
    color: var(--ci-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(203,9,53,.55);
    padding-bottom: 1px;
  }
  .ci-cookie__text a:hover{
    border-bottom-color: rgba(203,9,53,.9);
  }

  .ci-cookie__actions{
    display:flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .ci-btn{
    appearance: none;
    border: 1px solid rgba(203,9,53,.55);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .08s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
    font-size: 13px;
  }
  .ci-btn:active{ transform: translateY(1px); }

  .ci-btn--accept{
    background: linear-gradient(180deg, var(--ci-gold), var(--ci-gold-2));
    color: #0a0a0a;
    box-shadow: 0 10px 24px rgba(203,9,53,.18);
    border-color: rgba(203,9,53,.75);
  }
  .ci-btn--accept:hover{
    box-shadow: 0 12px 28px rgba(203,9,53,.24);
  }

  .ci-btn--reject{
    background: transparent;
    color: var(--ci-text);
    border-color: rgba(243,240,232,.35);
  }
  .ci-btn--reject:hover{
    border-color: rgba(243,240,232,.55);
  }

  /* Botón flotante "Cookies" */
  .ci-cookie-fab{
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9998;
    display: none; /* se muestra tras elegir */
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(10,10,10,.70);
    color: var(--ci-text);
    border: 1px solid rgba(203,9,53,.35);
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .04em;
    backdrop-filter: blur(6px);
  }
  .ci-cookie-fab:hover{
    border-color: rgba(203,9,53,.65);
  }

  @media (max-width: 760px){
    .ci-cookie__wrap{ grid-template-columns: 1fr; }
    .ci-cookie__actions{ justify-content: flex-start; }
    .ci-cookie-fab{ right: 12px; bottom: 12px; }
  }

  /* ==========================
     CoverManager placeholder
     ========================== */

  .cm-wrap{
    min-height: 550px; /* mismo alto que el iframe */
    position: relative;
  }

  .cm-placeholder{
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    text-align: center;
  }

  .cm-card{
    max-width: 520px;
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(203,9,53,.35);
    border-radius: 16px;
    background: rgba(10,10,10,.55);
    color: #f3f0e8;
  }

  .cm-card p{
    margin: 0 0 12px 0;
    line-height: 1.35;
  }

  .cm-btn{
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(203,9,53,.55);
    background: transparent;
    color: #f3f0e8;
    cursor: pointer;
    font-weight: 700;
  }

  .cm-btn:hover{
    border-color: rgba(203,9,53,.85);
  }