/*
  Benidorm Palace — cabaret nocturno.
  Mundo visual oscuro (terciopelo + dorado), sin alternar claro/oscuro.
*/

:root {
  --ink: #14021c;
  --wine: #21042b;
  --wine-lift: #2e0a3a;
  --plum: #3a1048;
  --burgundy: #4e1a5e;
  --cream: #f2e7d0;
  --gold: #c9a24a;
  --gold-hi: #e6c76e;
  --rose: #e08a95;

  --font-display: "Bodoni Moda", Didot, "Playfair Display", Georgia, serif;
  --font-body: "Optima", "Palatino Linotype", "Palatino", "Segoe UI", ui-sans-serif, system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }

html { color-scheme: dark; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--wine);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(74, 26, 40, .25) 0%, transparent 60%);
  background-attachment: fixed;
  color: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--gold-hi);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Animaciones globales ────────────────────────────────────────────── */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes shimmer {
  from { background-position: -200% center; }
  to { background-position: 200% center; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 199, 110, .3); }
  50% { box-shadow: 0 0 20px 4px rgba(230, 199, 110, .15); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Estructura de página ─────────────────────────────────────────────── */

.page-wrap {
  min-height: 100dvh;
  padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  animation: fadeIn 0.5s ease-out;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 1.5rem;
}
.main--ancho { padding-bottom: 3.5rem; }

.encabezado {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  animation: fadeInUp 0.8s var(--ease-out-expo) both;
}

.eyebrow {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-hi), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.titulo-pagina {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-style: italic;
  color: var(--gold-hi);
  margin: 0;
}

.intro-corta {
  max-width: 20rem;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(242, 231, 208, .62);
  margin: 0;
}

/* ── Filas de información (página Info) ───────────────────────────────── */

.lista-filas { display: flex; flex-direction: column; gap: 0.625rem; }

.info-fila {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(201, 162, 74, .15);
  background: rgba(74, 26, 40, .2);
  padding: 0.875rem 1rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s, border-color 0.3s, transform 0.2s var(--ease-spring);
}
a.info-fila:hover {
  background: rgba(74, 26, 40, .35);
  border-color: rgba(201, 162, 74, .3);
  transform: translateY(-1px);
}
a.info-fila:active { transform: scale(0.98); }
.info-fila .etiqueta {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(201, 162, 74, .8);
}
.info-fila .valor { text-align: right; font-size: 12.5px; color: var(--cream); }
.info-fila .valor.enlace { text-decoration: underline; text-decoration-color: rgba(201, 162, 74, .4); text-underline-offset: 2px; }

.nota-privacidad { text-align: center; font-size: 11px; line-height: 1.6; color: rgba(242, 231, 208, .4); margin: 0; }
.enlace-sutil { text-decoration: underline; text-decoration-color: rgba(201, 162, 74, .4); text-underline-offset: 2px; color: inherit; }

/* ── Redes sociales ────────────────────────────────────────────────────── */

.rrss-fila {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(201, 162, 74, .2);
  background: rgba(74, 26, 40, .2);
  padding: 0.875rem 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease-out-expo);
}
.rrss-fila:hover {
  background: rgba(74, 26, 40, .4);
  border-color: rgba(201, 162, 74, .35);
  transform: translateX(4px);
}
.rrss-fila:active { transform: scale(0.98); }
.rrss-icono {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(201, 162, 74, .1);
  color: var(--gold-hi);
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}
.rrss-fila:hover .rrss-icono {
  background: rgba(201, 162, 74, .2);
  transform: scale(1.1);
}
.rrss-icono svg { height: 20px; width: 20px; }
.rrss-nombre { font-size: 13.5px; font-weight: 500; color: rgba(242, 231, 208, .85); }
.rrss-chevron {
  margin-left: auto; color: rgba(201, 162, 74, .5);
  transition: transform 0.3s var(--ease-out-expo), color 0.3s;
}
.rrss-fila:hover .rrss-chevron { transform: translateX(3px); color: var(--gold-hi); }

/* ── Legal ─────────────────────────────────────────────────────────────── */

.legal-cuerpo { color: rgba(242, 231, 208, .8); }

.legal-aviso {
  border-radius: 1rem;
  border: 1px solid rgba(201, 162, 74, .25);
  background: rgba(74, 26, 40, .2);
  padding: 0.75rem 1rem;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(242, 231, 208, .55);
}

.legal-section { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.legal-section h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(201, 162, 74, .9);
  margin: 0;
}
.legal-section h2::after { content: ""; height: 1px; flex: 1; background: rgba(201, 162, 74, .2); }
.legal-section p { font-size: 12.5px; line-height: 1.6; margin: 0; }
.legal-section strong { color: var(--cream); }
.legal-section a { text-decoration: underline; text-decoration-color: rgba(201, 162, 74, .5); text-underline-offset: 2px; }

/* ── Navegación inferior ───────────────────────────────────────────────── */

.bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid rgba(201, 162, 74, .15);
  background: rgba(16, 6, 10, .92);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.bottom-nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.625rem 0 0.25rem;
  font-size: 8.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(242, 231, 208, .4);
  text-decoration: none;
  transition: color 0.3s;
}
.bottom-nav a:hover { color: rgba(242, 231, 208, .7); }
.bottom-nav a .nav-icono { transition: transform 0.25s var(--ease-spring); }
.bottom-nav a:active .nav-icono { transform: scale(0.85); }
.bottom-nav a.activo { color: var(--gold-hi); }
.bottom-nav a.activo::before {
  content: "";
  position: absolute;
  top: -1px;
  height: 2px;
  width: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hi), var(--gold));
  box-shadow: 0 0 8px rgba(230, 199, 110, .4);
}
.nav-icono { height: 22px; width: 22px; }

/* ── YouTube (clic para reproducir) ───────────────────────────────────── */

.yt-hero { position: relative; aspect-ratio: 16 / 9; width: 100%; overflow: hidden; background: var(--ink); }
.yt-hero-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-hero-play { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; background: none; cursor: pointer; }
.yt-hero-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--wine), rgba(24, 8, 16, .1) 60%, rgba(24, 8, 16, .4));
}
.yt-hero-playicon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.yt-hero-playicon span {
  display: flex; height: 4rem; width: 4rem; align-items: center; justify-content: center;
  border-radius: 9999px; background: rgba(230, 199, 110, .95);
  box-shadow: 0 8px 28px -6px rgba(230, 199, 110, .55);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  animation: pulseGlow 3s ease-in-out infinite;
}
.yt-hero-play:hover .yt-hero-playicon span {
  transform: scale(1.12);
  box-shadow: 0 12px 40px -6px rgba(230, 199, 110, .7);
}
.yt-hero-play:active .yt-hero-playicon span { transform: scale(0.92); }

/* ── Home ──────────────────────────────────────────────────────────────── */

.main--home { padding-top: 2rem; }

.titulo-home { font-family: var(--font-display); font-size: 2.25rem; line-height: 1; color: var(--cream); margin: 0; }
.titulo-home .enfasis { margin-top: 0.5rem; display: block; font-size: 1rem; font-weight: 400; font-style: italic; color: var(--gold-hi); }

.tarjeta-proximo {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
  border-radius: 1rem; border: 1px solid rgba(201, 162, 74, .15);
  background: linear-gradient(135deg, rgba(74, 26, 40, .3), rgba(45, 15, 28, .4));
  padding: 1rem 1.25rem;
  position: relative; overflow: hidden;
}
.tarjeta-proximo::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(230, 199, 110, .06), transparent 60%);
  pointer-events: none;
}
.tarjeta-proximo .etiqueta { font-size: 10px; text-transform: uppercase; line-height: 1.3; letter-spacing: 0.16em; color: rgba(242, 231, 208, .6); }
.tarjeta-proximo .valor { margin-top: 0.125rem; display: block; font-size: 14px; font-weight: 600; font-style: normal; letter-spacing: normal; color: var(--gold-hi); }
.pastilla-cta {
  white-space: nowrap; border-radius: 9999px;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  padding: 0.625rem 1.25rem;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--wine);
  text-decoration: none; display: inline-block;
  box-shadow: 0 4px 16px -4px rgba(230, 199, 110, .5);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
}
.pastilla-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(230, 199, 110, .6);
}
.pastilla-cta:active { transform: scale(0.95); }

.section-label {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3em; color: rgba(201, 162, 74, .9);
  margin: 0;
}
.section-label::after { content: ""; height: 1px; flex: 1; background: rgba(201, 162, 74, .2); }

.promo-fila {
  display: flex; align-items: center; gap: 0.75rem;
  border-radius: 1rem; border: 1px solid rgba(201, 162, 74, .15); background: rgba(74, 26, 40, .2);
  padding: 0.75rem 1rem;
  transition: all 0.3s var(--ease-out-expo); cursor: pointer;
}
.promo-fila:hover {
  background: rgba(74, 26, 40, .35);
  border-color: rgba(201, 162, 74, .3);
  transform: translateX(4px);
}
.promo-fila:active { transform: scale(0.98); }
.promo-icono {
  display: flex; height: 2.5rem; width: 2.5rem; flex-shrink: 0; align-items: center; justify-content: center;
  border-radius: 10px; background: linear-gradient(to bottom right, rgba(230, 199, 110, .25), rgba(224, 138, 149, .15));
  color: var(--gold-hi);
}
.promo-texto { min-width: 0; flex: 1; }
.promo-texto .titulo { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: var(--font-display); font-size: 15px; line-height: 1.3; color: var(--cream); margin: 0; }
.promo-texto .desc { margin: 0.125rem 0 0; font-size: 10px; letter-spacing: 0.02em; color: rgba(242, 231, 208, .6); }
.promo-chevron { font-size: 18px; color: rgba(201, 162, 74, .6); }

/* ── Show ──────────────────────────────────────────────────────────────── */

.synopsis { font-size: 13.5px; line-height: 1.6; color: rgba(242, 231, 208, .72); margin: 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
.gallery-item {
  aspect-ratio: 4 / 5; overflow: hidden; border-radius: 0.75rem;
  background: rgba(74, 26, 40, .25); position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24, 8, 16, .4), transparent 50%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

.recorte-redondeado { overflow: hidden; border-radius: 0.75rem; }

.cast-pendiente {
  border-radius: 1rem; border: 1px dashed rgba(201, 162, 74, .25); background: rgba(74, 26, 40, .15);
  padding: 1.25rem 1rem; text-align: center; font-size: 12.5px; color: rgba(242, 231, 208, .55); margin: 0;
}

/* ── Menús (Mesa) ──────────────────────────────────────────────────────── */

.menu-fila {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  border-radius: 1rem; border: 1px solid rgba(201, 162, 74, .15); background: rgba(74, 26, 40, .2);
  padding: 1rem; position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.menu-fila:hover {
  border-color: rgba(201, 162, 74, .3);
  background: rgba(74, 26, 40, .3);
}
.menu-fila::before {
  content: ""; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold-hi), var(--gold));
  opacity: 0; transition: opacity 0.3s;
}
.menu-fila:hover::before { opacity: 1; }
.menu-fila .nombre { font-family: var(--font-display); font-size: 16px; line-height: 1.3; color: var(--cream); margin: 0; }
.menu-fila .desc { margin-top: 0.25rem; font-size: 11.5px; line-height: 1.5; color: rgba(242, 231, 208, .6); }
.menu-fila .precio { flex-shrink: 0; font-family: var(--font-display); font-size: 1.125rem; color: var(--gold-hi); margin: 0; }
.nota-menus { font-size: 11px; line-height: 1.6; color: rgba(242, 231, 208, .45); margin: 0; }

/* ── Formularios (Mesa, Sorteo) ────────────────────────────────────────── */

.form { display: flex; flex-direction: column; gap: 0.875rem; }
.campo { display: flex; flex-direction: column; gap: 0.375rem; }
.campo .etiqueta-campo { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(201, 162, 74, .8); }
.campo input, .campo textarea {
  width: 100%; border-radius: 0.75rem; border: 1px solid rgba(201, 162, 74, .2); background: rgba(24, 8, 16, .6);
  padding: 0.75rem 1rem; font-size: 13px; color: var(--cream); outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s; font-family: inherit;
}
.campo input::placeholder, .campo textarea::placeholder { color: rgba(242, 231, 208, .3); }
.campo input:focus, .campo textarea:focus {
  border-color: var(--gold-hi);
  box-shadow: 0 0 0 3px rgba(230, 199, 110, .1), 0 0 16px rgba(230, 199, 110, .08);
  background: rgba(24, 8, 16, .8);
}
.campo textarea { resize: none; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-error { text-align: center; font-size: 10.5px; color: var(--rose); margin: 0; }

.btn-dorado {
  margin-top: 0.5rem; border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--gold-hi) 0%, var(--gold) 50%, var(--gold-hi) 100%);
  background-size: 200% 100%;
  padding: 0.875rem; text-align: center;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; color: var(--wine);
  box-shadow: 0 8px 22px -8px rgba(230, 199, 110, .4); border: 0; cursor: pointer; width: 100%; font-family: inherit;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.3s, background-position 0.5s;
  position: relative; overflow: hidden;
}
.btn-dorado::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-dorado:hover::after { transform: translateX(100%); }
.btn-dorado:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(230, 199, 110, .55);
  background-position: 100% center;
}
.btn-dorado:active { transform: scale(0.97) translateY(0); }
.btn-dorado:disabled { opacity: 0.5; cursor: default; transform: none; }
.btn-dorado:disabled::after { display: none; }

.form-exito {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  border-radius: 1rem; border: 1px solid rgba(201, 162, 74, .25);
  background: linear-gradient(135deg, rgba(74, 26, 40, .3), rgba(45, 15, 28, .35));
  padding: 2.5rem 1.5rem; text-align: center;
  animation: fadeInUp 0.6s var(--ease-out-expo) both;
  position: relative; overflow: hidden;
}
.form-exito::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(230, 199, 110, .06), transparent 60%);
  pointer-events: none;
}
.form-exito::after {
  content: "✓"; display: flex; align-items: center; justify-content: center;
  height: 3.5rem; width: 3.5rem; border-radius: 9999px;
  background: rgba(230, 199, 110, .1); border: 2px solid rgba(230, 199, 110, .25);
  font-size: 1.5rem; color: var(--gold-hi);
  animation: checkmark 0.6s var(--ease-spring) 0.2s both;
  order: -1;
}
.form-exito .titulo { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--gold-hi); margin: 0; }
.form-exito .cuerpo { max-width: 20rem; font-size: 13px; line-height: 1.6; color: rgba(242, 231, 208, .6); margin: 0; }

/* ── Eventos ───────────────────────────────────────────────────────────── */

.eventos-lista { display: flex; flex-direction: column; gap: 1.25rem; }
.evento-card {
  overflow: hidden; border-radius: 1rem; border: 1px solid rgba(201, 162, 74, .15);
  background: rgba(74, 26, 40, .2);
  transition: border-color 0.3s, transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.evento-card:hover {
  border-color: rgba(201, 162, 74, .3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -12px rgba(0,0,0,.5);
}
.evento-imagen {
  position: relative; aspect-ratio: 3 / 4;
  background: linear-gradient(to bottom right, rgba(74, 26, 40, .6), var(--wine), var(--ink));
  overflow: hidden;
}
.evento-imagen img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.evento-card:hover .evento-imagen img { transform: scale(1.05); }
.evento-fecha-badge {
  position: absolute; left: 0.75rem; top: 0.75rem; border-radius: 9999px; background: rgba(24, 8, 16, .85);
  padding: 0.25rem 0.75rem; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-hi);
}
.evento-cuerpo { display: flex; flex-direction: column; gap: 0.75rem; padding: 1rem; }
.evento-titulo { font-family: var(--font-display); font-size: 17px; line-height: 1.3; color: var(--cream); margin: 0; }
.evento-detalles { display: flex; flex-direction: column; gap: 0.375rem; }
.evento-detalle { display: flex; align-items: center; gap: 0.5rem; font-size: 11.5px; color: rgba(242, 231, 208, .7); }
.evento-detalle .clave { font-weight: 600; color: rgba(201, 162, 74, .9); }
.evento-desc { font-size: 12px; line-height: 1.6; color: rgba(242, 231, 208, .62); margin: 0; }
.evento-cta {
  margin-top: 0.25rem; align-self: flex-start; border-radius: 9999px;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold)); padding: 0.5rem 1.25rem;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--wine);
  text-decoration: none; box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
}
.evento-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 199, 110, .35);
}
.evento-cta:active { transform: scale(0.95); }

/* ── Sorteo ────────────────────────────────────────────────────────────── */

.sorteo-spinner-wrap { display: flex; min-height: 80dvh; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@keyframes girar { to { transform: rotate(360deg); } }
.spinner {
  height: 2.5rem; width: 2.5rem; border-radius: 9999px;
  border: 2px solid rgba(201, 162, 74, .12); border-top-color: var(--gold-hi);
  animation: girar 0.9s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  box-shadow: 0 0 16px rgba(230, 199, 110, .1);
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes rotateSlowReverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.locked {
  display: flex; min-height: 80dvh; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.25rem; padding: 0 2rem; text-align: center;
  animation: fadeInUp 0.8s var(--ease-out-expo) both;
}
.locked-icono {
  position: relative; display: flex; height: 7rem; width: 7rem; align-items: center; justify-content: center;
  border-radius: 9999px; border: 1px solid rgba(201, 162, 74, .25);
  background: radial-gradient(circle, rgba(74, 26, 40, .5), rgba(74, 26, 40, .2));
  color: var(--gold-hi);
  animation: float 4s ease-in-out infinite;
}
.locked-icono::before, .locked-icono::after {
  content: ""; position: absolute; border-radius: 9999px; border: 1px dashed rgba(201, 162, 74, .15); pointer-events: none;
}
.locked-icono::before { inset: -0.625rem; animation: rotateSlow 30s linear infinite; }
.locked-icono::after { inset: -1.25rem; border-color: rgba(201, 162, 74, .08); animation: rotateSlowReverse 45s linear infinite; }
.locked-badge {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em;
  color: rgba(224, 138, 149, .9); margin: 0;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  background: rgba(224, 138, 149, .08);
  border: 1px solid rgba(224, 138, 149, .15);
}
.locked-titulo { max-width: 18rem; font-family: var(--font-display); font-size: 1.5rem; line-height: 1.3; color: var(--cream); margin: 0; }
.locked-apertura { font-family: var(--font-display); font-size: 1.875rem; color: var(--gold-hi); margin: 0; }
.locked-cuerpo { max-width: 18rem; font-size: 12.5px; line-height: 1.7; color: rgba(242, 231, 208, .55); margin: 0; }
.locked-cta {
  margin-top: 0.5rem; border-radius: 9999px; border: 1px solid rgba(201, 162, 74, .35); padding: 0.75rem 1.5rem;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold-hi);
  text-decoration: none; background: rgba(201, 162, 74, .06); cursor: pointer; font-family: inherit;
  transition: all 0.3s var(--ease-out-expo);
}
.locked-cta:hover {
  background: rgba(201, 162, 74, .15);
  border-color: rgba(201, 162, 74, .6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 74, .15);
}
.locked-cta:active { transform: scale(0.96); }

.sorteo-hero { display: flex; flex-direction: column; gap: 0.5rem; }
.sorteo-en-directo { display: flex; align-items: center; gap: 0.5rem; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.26em; color: var(--rose); margin: 0; }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 138, 149, .5); }
  50% { box-shadow: 0 0 0 6px rgba(224, 138, 149, 0); }
}
.punto-en-directo {
  height: 0.4rem; width: 0.4rem; border-radius: 9999px; background: var(--rose);
  animation: pulseDot 2s ease-in-out infinite;
}
.sorteo-titulo { font-family: var(--font-display); font-size: 26px; line-height: 1; color: var(--cream); margin: 0; }
.sorteo-titulo .enfasis { font-style: italic; color: var(--gold-hi); }
.sorteo-subtitulo { font-size: 11px; line-height: 1.6; color: rgba(242, 231, 208, .62); margin: 0; }

.premio-teaser {
  display: flex; align-items: center; gap: 0.75rem; border-radius: 1rem; border: 1px solid rgba(201, 162, 74, .2);
  background: linear-gradient(135deg, rgba(74, 26, 40, .4), rgba(224, 138, 149, .08));
  padding: 0.875rem 1rem;
  position: relative; overflow: hidden;
}
.premio-teaser::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(230, 199, 110, .08), transparent 60%);
  pointer-events: none;
}
.premio-teaser .etiqueta { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(201, 162, 74, .8); margin: 0; }
.premio-teaser .titulo { margin-top: 0.125rem; font-family: var(--font-display); font-size: 15px; line-height: 1.3; color: var(--gold-hi); }
.premio-teaser .desc { margin-top: 0.125rem; font-size: 10.5px; line-height: 1.4; color: rgba(242, 231, 208, .55); }

.foto-input-oculto { display: none; }
.foto-drop {
  margin: 0 auto; display: flex; aspect-ratio: 3 / 4; width: 10rem; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.625rem; border-radius: 1rem; border: 1px dashed rgba(201, 162, 74, .35);
  background: rgba(74, 26, 40, .15); cursor: pointer; padding: 0;
  transition: border-color 0.3s, background 0.3s, transform 0.25s var(--ease-spring);
}
.foto-drop:hover {
  border-color: rgba(201, 162, 74, .6);
  background: rgba(74, 26, 40, .3);
  transform: scale(1.02);
}
.foto-drop:active { transform: scale(0.98); }
.foto-drop.error { border-color: rgba(224, 138, 149, .6); }
.foto-drop-icono { display: flex; height: 2.75rem; width: 2.75rem; align-items: center; justify-content: center; border-radius: 9999px; background: rgba(230, 199, 110, .15); color: var(--gold-hi); }
.foto-drop-cta { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(242, 231, 208, .78); }
.foto-drop-hint { max-width: 6.875rem; font-size: 9px; line-height: 1.4; color: rgba(242, 231, 208, .4); text-align: center; }

.foto-preview { position: relative; margin: 0 auto; width: 10rem; overflow: hidden; border-radius: 1rem; border: 1px solid rgba(201, 162, 74, .25); }
.foto-preview img { aspect-ratio: 3 / 4; width: 100%; object-fit: cover; display: block; }
.foto-retake {
  position: absolute; bottom: 0.5rem; right: 0.5rem; border-radius: 9999px; background: rgba(24, 8, 16, .85);
  padding: 0.375rem 0.75rem; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold-hi); border: 0; cursor: pointer; font-family: inherit;
}

.consentimiento { display: flex; align-items: flex-start; gap: 0.625rem; cursor: pointer; }
.consentimiento input { margin-top: 0.125rem; height: 1rem; width: 1rem; flex-shrink: 0; accent-color: var(--gold-hi); }
.consentimiento .texto { font-size: 11px; line-height: 1.6; color: rgba(242, 231, 208, .6); }

@keyframes checkmark {
  0% { transform: scale(0) rotate(-45deg); opacity: 0; }
  50% { transform: scale(1.2) rotate(0deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.sorteo-exito {
  display: flex; min-height: 80dvh; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; padding: 0 2rem; text-align: center;
  animation: fadeInUp 0.6s var(--ease-out-expo) both;
}
.sorteo-exito::before {
  content: "✓"; display: flex; align-items: center; justify-content: center;
  height: 4.5rem; width: 4.5rem; border-radius: 9999px;
  background: linear-gradient(135deg, rgba(230, 199, 110, .15), rgba(230, 199, 110, .05));
  border: 2px solid rgba(230, 199, 110, .3);
  font-size: 2rem; color: var(--gold-hi);
  animation: checkmark 0.6s var(--ease-spring) 0.3s both;
}
.sorteo-exito .titulo { font-family: var(--font-display); font-size: 1.875rem; font-style: italic; color: var(--gold-hi); margin: 0; }
.sorteo-exito .cuerpo { max-width: 18rem; font-size: 13px; line-height: 1.7; color: rgba(242, 231, 208, .6); margin: 0; }
.sorteo-exito .contador {
  margin-top: 0.75rem; display: flex; align-items: center; gap: 0.5rem;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(242, 231, 208, .45);
  padding: 0.5rem 1rem; border-radius: 9999px;
  background: rgba(74, 26, 40, .3); border: 1px solid rgba(201, 162, 74, .15);
}
.sorteo-exito .contador .num { font-family: var(--font-display); font-size: 1.125rem; font-weight: 400; letter-spacing: normal; color: var(--gold-hi); }
