/* =========================================================
   PLANTILLA "NEÓN" — XV años, su noche de fiesta.
   Hoja de estilo AUTOCONTENIDA (NO depende de base.css/temas.css).
   Comparte el contrato de datos del motor (motor.js): mismas clases/IDs/
   data-rol/data-modulo que el resto; cambia el copy y el envoltorio visual.
   Dirección: letrero de NEÓN sobre pared oscura. El nombre es un tubo de
   neón que ENCIENDE (flicker) y luego PULSA suave; luces bokeh flotan al
   fondo; el divisor es un trazo de neón. Multicolor: rosa / cian / violeta.
   Mobile-first · accesible · sin dependencias.
   ========================================================= */

:root {
  /* Pared oscura */
  --pared:    #0c0a14;
  --pared-2:  #15101f;
  --pared-3:  #0a0810;
  /* Neones */
  --rosa:     #ff3ea5;
  --rosa-suave:#ff8fc9;
  --cian:     #34e7e4;
  --cian-suave:#9af3f1;
  --violeta:  #7b2ff7;
  --violeta-suave:#b48bff;
  /* Texto */
  --marfil:   #f4eefb;
  --marfil-2: #c8bcd9;

  --f-nombre: "Monoton", "Pacifico", cursive;  /* tubo de neón */
  --f-titulo: "Pacifico", "Monoton", cursive;  /* títulos con guiño de neón */
  --f-texto:  "Jost", system-ui, -apple-system, sans-serif;

  --esp-1:4px; --esp-2:8px; --esp-3:16px; --esp-4:24px; --esp-5:40px; --esp-6:64px; --esp-7:96px;

  --linea:        rgba(180,139,255,.30);   /* violeta tenue */
  --linea-fuerte: rgba(52,231,228,.55);    /* cian */
  --panel:        rgba(123,47,247,.08);
  --panel-2:      rgba(255,255,255,.035);
  --radio: 8px;
  --ls: .3em;
  --transicion: .35s ease;

  /* Glow multicapa reutilizable (rosa) */
  --glow-rosa:
    0 0 6px #fff,
    0 0 12px var(--rosa),
    0 0 28px var(--rosa),
    0 0 54px var(--rosa);
  --glow-cian:
    0 0 5px #fff,
    0 0 10px var(--cian),
    0 0 24px var(--cian),
    0 0 46px var(--cian);
  --glow-violeta:
    0 0 5px #fff,
    0 0 12px var(--violeta),
    0 0 26px var(--violeta);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-texto);
  font-size: 16px; line-height: 1.8;
  color: var(--marfil);
  background-color: var(--pared);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* Pared oscura con textura sutil + halos de color del propio letrero */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60% 45% at 18% 12%, rgba(255,62,165,.14), transparent 60%),
    radial-gradient(55% 45% at 85% 30%, rgba(52,231,228,.10), transparent 60%),
    radial-gradient(70% 60% at 50% 100%, rgba(123,47,247,.16), transparent 65%),
    radial-gradient(120% 100% at 50% 0%, var(--pared-2) 0%, var(--pared) 55%, var(--pared-3) 100%);
}
/* Grano fino de la pared (estático, no anima) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 3px 3px;
}

img { max-width: 100%; display: block; }
iframe { border: 0; }

.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .9s ease, transform .9s ease; }
.fade-up.is-visible { opacity: 1; transform: none; }

/* =========================================================
   LUCES BOKEH — globos de luz que flotan/suben lento al fondo
   ========================================================= */
.bokeh, .hero__bokeh { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.hero__bokeh::before, .hero__bokeh::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(14px);
  will-change: transform, opacity;
}
.hero__bokeh::before {
  width: 120px; height: 120px; left: 12%; bottom: -140px;
  background: radial-gradient(circle, rgba(255,62,165,.55), transparent 70%);
  animation: subir 17s ease-in-out infinite;
}
.hero__bokeh::after {
  width: 90px; height: 90px; right: 16%; bottom: -120px;
  background: radial-gradient(circle, rgba(52,231,228,.5), transparent 70%);
  animation: subir 22s ease-in-out infinite 3s;
}
@keyframes subir {
  0%   { transform: translate3d(0, 0, 0) scale(.9); opacity: 0; }
  12%  { opacity: .9; }
  88%  { opacity: .8; }
  100% { transform: translate3d(26px, -120vh, 0) scale(1.25); opacity: 0; }
}

/* =========================================================
   HERO — el letrero de neón
   ========================================================= */
.hero {
  position: relative; isolation: isolate;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: var(--esp-7) var(--esp-4);
  /* La pared (body) ES la portada: ignora cualquier foto de hero (sin foto). */
  background-image: none !important;
}
.hero__overlay { display: none; }
.hero__contenido { position: relative; display: flex; flex-direction: column; align-items: center; }

/* monograma de iniciales como aro de neón cian (motor.js → hero-sello) */
.hero__sello {
  width: 70px; height: 70px; margin-bottom: var(--esp-4);
  display: grid; place-items: center;
  border: 2px solid var(--cian); border-radius: 50%;
  font-family: var(--f-texto); font-weight: 600; font-size: 1.3rem; color: var(--cian-suave);
  box-shadow: var(--glow-cian), inset 0 0 14px rgba(52,231,228,.35);
  text-shadow: 0 0 8px var(--cian);
}
.hero__sello:empty { display: none; }

.hero__intro {
  font-family: var(--f-texto); text-transform: uppercase; letter-spacing: var(--ls);
  font-size: .8rem; font-weight: 500; color: var(--cian-suave);
  margin-bottom: var(--esp-4);
  text-shadow: 0 0 10px var(--cian);
}

/* El NOMBRE — tubo de neón rosa. Enciende (flicker) y luego pulsa. */
.hero__nombres {
  font-family: var(--f-nombre); font-weight: 400;
  font-size: clamp(3.4rem, 20vw, 7rem); line-height: 1.04;
  color: #fff;
}
.hero__neon {
  display: inline-block;
  color: var(--rosa-suave);
  /* Encendido: parpadeo irregular (3s) → luego pulso suave infinito (4s) */
  animation:
    neon-encender 3s steps(1) 1 both,
    neon-pulso 4s ease-in-out 3s infinite;
}
/* Flicker de encendido: opacidad + glow irregular, como tubo que prende */
@keyframes neon-encender {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1; color: var(--rosa-suave);
    text-shadow: var(--glow-rosa);
  }
  20%, 24%, 55% {
    opacity: .25; color: #6a2a4d;
    text-shadow: none;
  }
  /* breves apagones secos */
  40%, 60% {
    opacity: .55; color: #9c3a6f;
    text-shadow: 0 0 4px var(--rosa);
  }
}
/* Pulso de respiración del glow ya encendido */
@keyframes neon-pulso {
  0%, 100% {
    text-shadow:
      0 0 6px #fff, 0 0 12px var(--rosa), 0 0 28px var(--rosa), 0 0 54px var(--rosa);
  }
  50% {
    text-shadow:
      0 0 4px #fff, 0 0 9px var(--rosa), 0 0 20px var(--rosa), 0 0 40px var(--rosa);
  }
}
.hero__amp { display: block; font-size: .4em; }

.hero__fecha {
  display: inline-flex; align-items: center; gap: var(--esp-3);
  margin-top: var(--esp-5);
  font-family: var(--f-texto); text-transform: uppercase; letter-spacing: var(--ls);
  font-size: clamp(.8rem, 3.4vw, .98rem); font-weight: 500; color: var(--marfil);
  text-shadow: 0 0 10px rgba(180,139,255,.6);
}
.hero__fecha::before, .hero__fecha::after {
  content: ""; width: 34px; height: 2px; border-radius: 2px;
  background: var(--violeta-suave); box-shadow: var(--glow-violeta);
}
.hero__scroll {
  margin-top: var(--esp-6); color: var(--cian-suave); text-decoration: none;
  font-size: 1.6rem; text-shadow: 0 0 10px var(--cian);
}
.hero__flecha { display: inline-block; animation: flotar 2s ease-in-out infinite; }
@keyframes flotar { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* =========================================================
   ESTRUCTURA — secciones sobre la pared
   ========================================================= */
main { padding: var(--esp-5) var(--esp-4) var(--esp-7); }
.contador, .evento, .rsvp, .padrinos,
.mesa-regalos, .dress-code, .itinerario, .hospedaje, .bienvenida {
  max-width: 600px; margin: 0 auto var(--esp-7);
  text-align: center;
}

/* Divisor: trazo de neón cian con un punto de luz al centro (puro CSS) */
.divisor {
  position: relative; display: block; width: 180px; height: 14px;
  margin: 0 auto var(--esp-5); font-size: 0;
}
.divisor::before {
  content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 2px; border-radius: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, var(--cian) 18%, var(--cian) 82%, transparent);
  box-shadow: 0 0 4px var(--cian), 0 0 12px var(--cian);
}
.divisor::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 0 6px #fff, 0 0 14px var(--rosa), 0 0 26px var(--rosa);
}

/* Títulos de sección — guiño de neón rosa suave */
.seccion__titulo, .bienvenida__titulo {
  font-family: var(--f-titulo); font-weight: 400;
  font-size: clamp(1.7rem, 6vw, 2.5rem); line-height: 1.2;
  color: var(--rosa-suave); letter-spacing: .01em;
  margin-bottom: var(--esp-4);
  text-shadow: 0 0 8px var(--rosa), 0 0 20px rgba(255,62,165,.5);
}
.bienvenida__titulo { color: var(--cian-suave); text-shadow: 0 0 8px var(--cian), 0 0 20px rgba(52,231,228,.5); }
.bienvenida__texto {
  max-width: 480px; margin: 0 auto; color: var(--marfil);
  font-size: 1.06rem;
}

/* =========================================================
   CUENTA REGRESIVA — displays de neón
   ========================================================= */
.contador__lista { list-style: none; display: flex; gap: var(--esp-3); justify-content: center; flex-wrap: wrap; }
.contador__item {
  min-width: 78px; padding: var(--esp-3) var(--esp-2);
  background: var(--panel); border: 1px solid var(--linea); border-radius: var(--radio);
  box-shadow: inset 0 0 18px rgba(123,47,247,.18);
}
.contador__num {
  display: block; font-family: var(--f-texto); font-weight: 700;
  font-size: clamp(1.9rem, 8vw, 2.6rem); line-height: 1; color: var(--cian-suave);
  text-shadow: var(--glow-cian);
}
.contador__label {
  display: block; margin-top: var(--esp-2);
  font-size: .62rem; text-transform: uppercase; letter-spacing: .2em; color: var(--marfil-2);
}

/* =========================================================
   PADRINOS  (XV)
   ========================================================= */
.padrinos__lista { list-style: none; display: grid; gap: var(--esp-3); grid-template-columns: 1fr; }
.padrinos__item {
  background: var(--panel); border: 1px solid var(--linea); border-radius: var(--radio);
  padding: var(--esp-4) var(--esp-3);
}
.padrinos__rol {
  font-size: .66rem; text-transform: uppercase; letter-spacing: .22em;
  color: var(--cian-suave); margin-bottom: var(--esp-2);
  text-shadow: 0 0 8px var(--cian);
}
.padrinos__nombres { font-family: var(--f-texto); font-weight: 600; font-size: 1.25rem; color: var(--marfil); line-height: 1.3; }

/* =========================================================
   EVENTOS (misa / fiesta) + MAPA
   ========================================================= */
.evento__hora {
  display: inline-block; font-family: var(--f-texto); font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em; font-size: .85rem; color: var(--rosa-suave);
  margin-bottom: var(--esp-2); text-shadow: 0 0 8px var(--rosa);
}
.evento__lugar { font-family: var(--f-texto); font-weight: 700; font-size: clamp(1.5rem,5vw,2rem); color: var(--marfil); line-height: 1.2; }
.evento__direccion { color: var(--marfil-2); margin: var(--esp-2) 0 var(--esp-4); }
.evento__mapa { border: 1px solid var(--linea-fuerte); border-radius: var(--radio); overflow: hidden; box-shadow: 0 0 18px rgba(52,231,228,.25); }
.evento__mapa iframe { width: 100%; height: 300px; display: block; filter: saturate(.85) brightness(.85) contrast(1.05); }
.evento__boton, .mesa-regalos__link, .hospedaje__link {
  display: inline-block; margin-top: var(--esp-4);
  padding: var(--esp-2) var(--esp-5); border: 2px solid var(--rosa);
  border-radius: 999px; color: var(--rosa-suave); text-decoration: none;
  font-family: var(--f-texto); font-weight: 600; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .2em;
  text-shadow: 0 0 8px var(--rosa);
  box-shadow: 0 0 12px rgba(255,62,165,.45), inset 0 0 12px rgba(255,62,165,.2);
  transition: background var(--transicion), color var(--transicion), box-shadow var(--transicion);
}
.evento__boton:hover, .mesa-regalos__link:hover, .hospedaje__link:hover {
  background: var(--rosa); color: var(--pared); text-shadow: none;
  box-shadow: 0 0 28px rgba(255,62,165,.7);
}

/* =========================================================
   ITINERARIO
   ========================================================= */
.itinerario__lista { list-style: none; max-width: 460px; margin: 0 auto; text-align: left; }
.itinerario__item {
  display: grid; grid-template-columns: 96px 1fr; align-items: baseline; gap: var(--esp-3);
  padding: var(--esp-3) 0; border-bottom: 1px solid var(--linea);
}
.itinerario__item:last-child { border-bottom: none; }
.itinerario__hora { font-family: var(--f-texto); font-weight: 700; font-size: 1.05rem; color: var(--cian-suave); text-shadow: 0 0 8px var(--cian); }
.itinerario__actividad { color: var(--marfil); }

/* =========================================================
   DRESS CODE
   ========================================================= */
.dress-code__descripcion { max-width: 460px; margin: 0 auto var(--esp-4); color: var(--marfil-2); }
.dress-code__colores { display: flex; flex-wrap: wrap; gap: var(--esp-3); justify-content: center; }
.dress-code__color { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,.7); box-shadow: 0 0 12px rgba(255,255,255,.35); }

/* =========================================================
   MESA DE REGALOS
   ========================================================= */
.mesa-regalos__mensaje { max-width: 460px; margin: 0 auto var(--esp-4); color: var(--marfil-2); }
.mesa-regalos__lista { display: flex; flex-wrap: wrap; gap: var(--esp-3); justify-content: center; }
.mesa-regalos__link { margin-top: 0; }

/* =========================================================
   HOSPEDAJE
   ========================================================= */
.hospedaje__lista { list-style: none; display: grid; gap: var(--esp-3); grid-template-columns: 1fr; }
.hospedaje__item {
  background: var(--panel); border: 1px solid var(--linea); border-radius: var(--radio);
  padding: var(--esp-4) var(--esp-3);
}
.hospedaje__nombre { font-family: var(--f-texto); font-weight: 700; font-size: 1.2rem; color: var(--marfil); margin-bottom: var(--esp-1); }
.hospedaje__direccion { color: var(--marfil-2); margin-bottom: var(--esp-2); }
.hospedaje__tel { display: inline-block; color: var(--cian-suave); text-decoration: none; letter-spacing: .04em; text-shadow: 0 0 8px var(--cian); }
.hospedaje__tel:hover { text-decoration: underline; }
.hospedaje__link { margin-top: var(--esp-3); padding: var(--esp-1) var(--esp-4); font-size: .7rem; }

/* =========================================================
   GALERÍA — carrusel a sangre
   ========================================================= */
.galeria { padding: var(--esp-5) 0 var(--esp-7); max-width: none; margin: 0 0 var(--esp-7); }
.carrusel { position: relative; max-width: 920px; margin: 0 auto; }
.carrusel__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.carrusel__track::-webkit-scrollbar { display: none; }
.carrusel__slide { flex: 0 0 84%; scroll-snap-align: center; padding: 0 var(--esp-2); }
.carrusel__slide img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--linea-fuerte); border-radius: var(--radio); box-shadow: 0 0 16px rgba(52,231,228,.25); }
.carrusel__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--cian);
  background: rgba(12,10,20,.7); color: var(--cian-suave); font-size: 1.4rem; cursor: pointer;
  display: grid; place-items: center; -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  box-shadow: 0 0 14px rgba(52,231,228,.45); text-shadow: 0 0 8px var(--cian);
}
.carrusel__nav--prev { left: 10px; } .carrusel__nav--next { right: 10px; }
.carrusel__dots { display: flex; justify-content: center; gap: 10px; margin-top: var(--esp-4); }
.carrusel__dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--rosa); background: transparent; padding: 0; cursor: pointer; }
.carrusel__dot.is-active { background: var(--rosa); box-shadow: 0 0 10px var(--rosa); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 50; display: flex; align-items: center; justify-content: center; background: rgba(8,6,14,.95); padding: var(--esp-3); opacity: 0; visibility: hidden; transition: opacity var(--transicion); }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: 100%; max-height: 85vh; border: 1px solid var(--linea-fuerte); border-radius: var(--radio); box-shadow: 0 0 30px rgba(52,231,228,.35); }
.lightbox__cerrar { position: absolute; top: var(--esp-3); right: var(--esp-3); background: none; border: none; color: var(--cian-suave); font-size: 2.4rem; cursor: pointer; line-height: 1; text-shadow: 0 0 10px var(--cian); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--cian-suave); font-size: 2.6rem; cursor: pointer; padding: var(--esp-2); text-shadow: 0 0 10px var(--cian); }
.lightbox__nav--prev { left: var(--esp-1); } .lightbox__nav--next { right: var(--esp-1); }

/* =========================================================
   RSVP
   ========================================================= */
.rsvp__nota { color: var(--marfil-2); margin-bottom: var(--esp-4); font-style: italic; }
.rsvp__form { max-width: 420px; margin: 0 auto; text-align: left; }
.rsvp__auto { margin: calc(-1 * var(--esp-2)) 0 var(--esp-3); font-size: .8rem; font-style: italic; color: var(--cian-suave); }
.rsvp__bloqueado { margin-top: var(--esp-3); }
.campo { margin-bottom: var(--esp-4); border: none; }
.campo__label { display: block; margin-bottom: var(--esp-2); font-size: .68rem; font-weight: 600; color: var(--cian-suave); text-transform: uppercase; letter-spacing: .18em; text-shadow: 0 0 6px var(--cian); }
.campo__input {
  width: 100%; padding: var(--esp-2) 0; font-family: var(--f-texto); font-size: 1.05rem; color: var(--marfil);
  background: transparent; border: none; border-bottom: 2px solid var(--linea); border-radius: 0;
  transition: border-color var(--transicion), box-shadow var(--transicion);
}
textarea.campo__input { border: 2px solid var(--linea); border-radius: var(--radio); padding: var(--esp-2) var(--esp-3); }
.campo__input::placeholder { color: var(--marfil-2); opacity: .55; }
.campo__input:focus-visible { outline: none; border-color: var(--cian); box-shadow: 0 2px 12px rgba(52,231,228,.4); }
.rsvp__opciones { display: flex; flex-direction: column; gap: var(--esp-2); }
.rsvp__radio { display: flex; align-items: center; gap: var(--esp-2); cursor: pointer; }
.rsvp__radio input { accent-color: var(--rosa); }
.boton {
  display: block; width: 100%; margin-top: var(--esp-3);
  padding: var(--esp-3); border: 2px solid var(--rosa); border-radius: 999px;
  background: transparent; color: var(--rosa-suave);
  font-family: var(--f-texto); font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; cursor: pointer;
  text-shadow: 0 0 8px var(--rosa);
  box-shadow: 0 0 14px rgba(255,62,165,.4), inset 0 0 14px rgba(255,62,165,.18);
  transition: background var(--transicion), color var(--transicion), box-shadow var(--transicion);
}
.boton:hover { background: var(--rosa); color: var(--pared); text-shadow: none; box-shadow: 0 0 32px rgba(255,62,165,.7); }
.boton:active { transform: translateY(1px); }
.boton:disabled { opacity: .55; cursor: default; }
.rsvp__estado { margin-top: var(--esp-3); text-align: center; font-weight: 600; min-height: 1.4em; }
.rsvp__estado--ok { color: var(--cian-suave); text-shadow: 0 0 10px var(--cian); }
.rsvp__estado--error { color: #ff8aa8; text-shadow: 0 0 10px rgba(255,62,165,.5); }

/* =========================================================
   MÚSICA
   ========================================================= */
.musica { position: fixed; bottom: var(--esp-3); right: var(--esp-3); z-index: 40; width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--violeta-suave); background: rgba(12,10,20,.85); color: var(--violeta-suave); cursor: pointer; display: grid; place-items: center; font-size: 1.3rem; box-shadow: var(--glow-violeta); text-shadow: 0 0 8px var(--violeta); }
.musica:focus-visible { outline: 2px solid var(--cian); outline-offset: 3px; }
.musica[aria-pressed="true"] .musica__icono { animation: girar 4s linear infinite; }
@keyframes girar { to { transform: rotate(360deg); } }

/* =========================================================
   PIE — letrerito final
   ========================================================= */
.pie { position: relative; text-align: center; padding: var(--esp-7) var(--esp-4) calc(var(--esp-7) + 60px); }
.pie::before {
  content: ""; position: absolute; top: var(--esp-5); left: 50%; transform: translateX(-50%);
  width: 70px; height: 2px; border-radius: 2px;
  background: var(--cian); box-shadow: 0 0 4px var(--cian), 0 0 14px var(--cian);
}
.pie__nombres { font-family: var(--f-nombre); font-size: clamp(2.4rem, 12vw, 3.4rem); line-height: 1.1; color: var(--rosa-suave); text-shadow: var(--glow-rosa); }
.pie__fecha { text-transform: uppercase; letter-spacing: var(--ls); font-size: .76rem; margin: var(--esp-3) 0 var(--esp-3); color: var(--marfil-2); }
.pie__credito { font-size: .66rem; text-transform: uppercase; letter-spacing: .24em; color: var(--cian-suave); opacity: .8; text-shadow: 0 0 6px var(--cian); }

/* =========================================================
   FOCO ACCESIBLE (links / inputs / botones)
   ========================================================= */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--cian); outline-offset: 3px; border-radius: 2px;
}

/* =========================================================
   BARRA DE PREVIEW (dev)
   ========================================================= */
.preview { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: rgba(8,6,14,.95); color: #fff; padding: var(--esp-2) var(--esp-3); display: flex; gap: var(--esp-4); flex-wrap: wrap; justify-content: center; font-family: system-ui, sans-serif; }
.preview__chip { background: rgba(255,255,255,.12); color: #fff; border: 1px solid transparent; padding: 4px 10px; border-radius: 999px; font-size: .8rem; cursor: pointer; }
.preview__chip.is-active { background: var(--rosa); color: #111; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 768px) {
  .carrusel__slide { flex: 0 0 58%; }
  .carrusel__slide img { aspect-ratio: 16/10; }
  .padrinos__lista, .hospedaje__lista { grid-template-columns: 1fr 1fr; }
  .evento__mapa iframe { height: 360px; }
}

/* =========================================================
   ACCESIBILIDAD — reduce motion: glow ESTÁTICO, sin flicker ni drift
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade-up { opacity: 1; transform: none; }
  /* El nombre queda encendido fijo (sin flicker ni pulso) */
  .hero__neon {
    opacity: 1; color: var(--rosa-suave);
    text-shadow: var(--glow-rosa);
  }
  /* Sin bokeh flotante */
  .hero__bokeh::before, .hero__bokeh::after { display: none; }
}
