/* El Santo Disco — style v4 | For production, minify with: csso style-v4.css --output style.min.css */
/* ============================================
   EL SANTO DISCO — style-v4.css
   Diseño profesional con identidad propia
   ============================================ */

:root {
    --bg: #07070d;
    --bg2: #0c0c14;
    --surface: rgba(255,255,255,.04);
    --border: rgba(255,255,255,.07);
    --red: #E8003A;
    --red-bright: #FF2D55;
    --gold: #C9A84C;
    --gold-soft: #D4A847;
    --green: #25D366;
    --grad: linear-gradient(135deg, #E8003A, #C9A84C);
    --grad-text: linear-gradient(90deg, #E8003A, #C9A84C);
    --text: #EAEAF0;
    --muted: #6B6B80;
    --soft: #A0A0B8;
    --nav-h: 64px;
    --pad: 6rem;
    --r-sm: 6px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 999px;
    --ease: cubic-bezier(.22,.68,0,1);
    --t: .3s var(--ease);
    --font: 'Outfit', sans-serif;
    --font-alt: 'Space Grotesk', sans-serif;
    /* compat aliases used by JS glass effect */
    --pink: #E8003A;
    --purple: #C9A84C;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    overflow-x: hidden;
}

body { overflow-x: hidden; }

/* Grain texture */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--t); }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ---------- Utilities ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-c { text-align: center; }
.section { padding: var(--pad) 0; }
.bg-alt { background: var(--bg2); }

.chip {
    display: inline-block;
    padding: .3rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(232,0,58,.4);
    color: var(--red);
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1rem;
}

.sec-title {
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 1rem;
}

.sub, .lead {
    color: var(--soft);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-family: var(--font-alt);
}

.grad {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Glass ---------- */
.glass {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
    overflow: hidden;
}

/* Spotlight fill — follows pointer inside card */
.glass::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        var(--spot-size, 350px) circle at var(--mouse-x, 50%) var(--mouse-y, -20%),
        hsla(var(--spot-hue, 348), 90%, 55%, .12),
        transparent 60%
    );
    opacity: 0;
    transition: opacity .4s var(--ease);
    z-index: 0;
}

/* Border glow — brighter ring that follows pointer */
.glass::after {
    content: '';
    position: absolute;
    inset: -1px;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(
        calc(var(--spot-size, 350px) * 0.6) circle at var(--mouse-x, 50%) var(--mouse-y, -20%),
        hsla(var(--spot-hue, 348), 100%, 60%, .45),
        transparent 70%
    );
    opacity: 0;
    transition: opacity .4s var(--ease);
    z-index: 0;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
}

.glass > * { position: relative; z-index: 1; }

.glass:hover {
    border-color: hsla(var(--spot-hue, 348), 80%, 55%, .3);
    box-shadow: 0 0 20px hsla(var(--spot-hue, 348), 80%, 50%, .08),
                0 8px 32px rgba(0,0,0,.3);
}
.glass:hover::before { opacity: 1; }
.glass:hover::after  { opacity: 1; }

/* ---------- Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.on { opacity: 1; transform: none; }


/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--red);
    color: #fff;
    font-family: var(--font);
    font-weight: 800;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: .8rem 1.8rem;
    border-radius: var(--r-xl);
    border: none;
    white-space: nowrap;
    transition: transform .25s var(--ease), background .25s, box-shadow .25s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--red-bright);
    box-shadow: 0 8px 28px rgba(232,0,58,.35);
}

.btn-xl { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.2rem; font-size: .78rem; }

.glow:hover {
    box-shadow: 0 0 18px rgba(232,0,58,.5), 0 0 45px rgba(232,0,58,.2);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .8rem 1.8rem;
    border-radius: var(--r-xl);
    border: 1.5px solid rgba(255,255,255,.18);
    font-family: var(--font);
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text);
    transition: var(--t);
}
.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,.06);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem 1.8rem;
    border-radius: var(--r-xl);
    border: 1.5px solid var(--red);
    font-family: var(--font);
    font-weight: 800;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--red);
    background: transparent;
    transition: var(--t);
}
.btn-outline:hover {
    background: rgba(232,0,58,.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232,0,58,.12);
}


/* ============================================
   WHATSAPP
   ============================================ */
.wa-float {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    z-index: 9000;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37,211,102,.35);
    transition: transform .25s var(--ease), box-shadow .25s;
}
.wa-float:hover {
    transform: scale(1.07) rotate(-3deg);
    box-shadow: 0 10px 28px rgba(37,211,102,.5);
}
.wa-float svg { filter: drop-shadow(0 1px 2px rgba(0,0,0,.2)); }


/* ============================================
   NAVBAR
   ============================================ */
/* ─── ANIME NAVBAR ─────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: auto;
    padding-top: 40px;
    transition: background .3s, padding .3s, border-color .3s, box-shadow .3s;
    background: transparent;
    overflow: visible;
}
.navbar.scrolled {
    padding-top: 10px;
    background: rgba(7,7,13,.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    gap: .6rem;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}
.nav-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--grad) border-box;
    transition: box-shadow .3s;
}
.nav-logo-link:hover .nav-logo-img {
    box-shadow: 0 0 12px rgba(232,0,58,.5);
}
.nav-logo-text {
    font-weight: 900;
    font-size: .85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating pill container */
.anime-nav-pill {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(0,0,0,.5);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 4px 6px;
    border-radius: 999px;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    margin-left: auto;
    animation: navSlideIn .6s cubic-bezier(.22,.68,0,1) both;
}
@keyframes navSlideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav-link {
    position: relative;
    padding: .4rem .55rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: rgba(255,255,255,.55);
    transition: color .3s, background .3s;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}
.nav-link:hover {
    color: #fff;
}
.nav-link:hover::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    pointer-events: none;
    animation: hoverFadeIn .2s ease both;
}
@keyframes hoverFadeIn {
    from { opacity: 0; transform: scale(.8); }
    to   { opacity: 1; transform: scale(1); }
}
.nav-link.active {
    color: #fff;
}
.nav-link.active::before {
    display: none;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: var(--red);
    opacity: .2;
    filter: blur(4px);
    pointer-events: none;
    animation: activeGlow 2s ease-in-out infinite;
    z-index: -1;
}
@keyframes activeGlow {
    0%, 100% { opacity: .2; transform: scale(1); }
    50%      { opacity: .35; transform: scale(1.05); }
}
/* ─── MASCOT ────────────────────────────────── */
.anime-mascot {
    position: absolute;
    top: -44px;
    left: 0;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 10;
    transition: left .4s cubic-bezier(.34,1.56,.64,1), opacity .3s;
    opacity: 0;
}
.anime-mascot.visible {
    opacity: 1;
}
.mascot-body {
    position: relative;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto;
    animation: mascotFloat 2s ease-in-out infinite;
}
@keyframes mascotFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}
.anime-nav-pill:hover .mascot-body {
    animation: mascotExcited .5s ease-in-out;
}
@keyframes mascotExcited {
    0%   { transform: scale(1) rotate(0); }
    25%  { transform: scale(1.1) rotate(-5deg); }
    50%  { transform: scale(1.05) rotate(5deg); }
    100% { transform: scale(1) rotate(0); }
}

.mascot-eye {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #111;
    border-radius: 50%;
    top: 38%;
    transition: transform .2s;
}
.mascot-eye-l { left: 22%; }
.mascot-eye-r { right: 22%; }
.anime-nav-pill:hover .mascot-eye {
    animation: mascotBlink .3s ease;
}
@keyframes mascotBlink {
    0%, 100% { transform: scaleY(1); }
    50%      { transform: scaleY(.15); }
}

.mascot-blush {
    position: absolute;
    width: 7px;
    height: 5px;
    background: #f9b;
    border-radius: 50%;
    top: 55%;
    opacity: .5;
    transition: opacity .3s;
}
.mascot-blush-l { left: 12%; }
.mascot-blush-r { right: 12%; }
.anime-nav-pill:hover .mascot-blush { opacity: .8; }

.mascot-mouth {
    position: absolute;
    width: 12px;
    height: 6px;
    border-bottom: 2px solid #111;
    border-radius: 0 0 50% 50%;
    left: 50%;
    top: 60%;
    transform: translateX(-50%);
    transition: transform .2s;
}
.anime-nav-pill:hover .mascot-mouth {
    transform: translateX(-50%) scaleY(1.5) translateY(-1px);
}

.mascot-sparkle {
    position: absolute;
    font-size: 8px;
    opacity: 0;
    transition: opacity .2s, transform .2s;
    pointer-events: none;
}
.mascot-sparkle-1 { top: -4px; right: -4px; }
.mascot-sparkle-2 { top: -8px; left: 0; }
.anime-nav-pill:hover .mascot-sparkle {
    opacity: 1;
    animation: sparkleIn .3s ease both;
}
.anime-nav-pill:hover .mascot-sparkle-2 {
    animation-delay: .1s;
}
@keyframes sparkleIn {
    from { opacity: 0; transform: scale(0); }
    to   { opacity: 1; transform: scale(1); }
}

/* Mascot tail / pointer */
.mascot-tail {
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    margin: -6px auto 0;
    animation: tailBounce 2s ease-in-out infinite;
}
@keyframes tailBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50%      { transform: rotate(45deg) translateY(2px); }
}
.anime-nav-pill:hover .mascot-tail {
    animation: tailExcited .3s ease-in-out infinite alternate;
}
@keyframes tailExcited {
    from { transform: rotate(45deg) translateY(0); }
    to   { transform: rotate(45deg) translateY(-4px); }
}

.nav-ticket-mobile {
    display: none;
    padding: .5rem 0;
}
.nav-ticket-desk {
    flex-shrink: 0;
    margin-left: .5rem;
    font-size: .72rem;
    padding: .5rem 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    display: block;
    transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* top padding clears the fixed navbar so flex centering happens below it */
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 2rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('galeria/elsanto.unvicio-20260310-0004.jpg.jpeg') center/cover no-repeat;
    filter: brightness(.22) saturate(1.2) contrast(1.1);
    animation: bgPan 25s infinite alternate ease-in-out;
}
@keyframes bgPan {
    from { transform: scale(1.03); }
    to   { transform: scale(1.08) translateX(-1.5%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(7,7,13,.2) 0%,
        rgba(7,7,13,.5) 55%,
        var(--bg) 100%);
}

/* Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 2;
    pointer-events: none;
}
.orb-a {
    width: 50vw; height: 50vw;
    max-width: 650px; max-height: 650px;
    background: radial-gradient(circle, rgba(232,0,58,.35) 0%, transparent 60%);
    top: -20%; left: -15%;
    animation: orbA 13s infinite alternate ease-in-out;
}
.orb-b {
    width: 40vw; height: 40vw;
    max-width: 550px; max-height: 550px;
    background: radial-gradient(circle, rgba(201,168,76,.3) 0%, transparent 60%);
    bottom: -15%; right: -12%;
    animation: orbB 16s infinite alternate ease-in-out;
}
@keyframes orbA { to { transform: translate(5%, 10%); } }
@keyframes orbB { to { transform: translate(-6%, -5%); } }

/* Particles */
.particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}
.p {
    position: absolute;
    width: 2px; height: 2px;
    border-radius: 50%;
    animation: pFloat linear infinite;
    opacity: 0;
}

.p1,.p3,.p5,.p7,.p9,.p11,.p13,.p15,.p17 { background: var(--red); }
.p2,.p4,.p6,.p8,.p10,.p12,.p14,.p16,.p18 { background: var(--gold); }

.p1  { left:5%;   bottom:-10px; width:2px; height:2px; animation-duration:8s;  animation-delay:0s; }
.p2  { left:12%;  bottom:-10px; width:3px; height:3px; animation-duration:12s; animation-delay:1s; }
.p3  { left:22%;  bottom:-10px; width:2px; height:2px; animation-duration:9s;  animation-delay:2s; }
.p4  { left:30%;  bottom:-10px; width:3px; height:3px; animation-duration:14s; animation-delay:.5s; }
.p5  { left:40%;  bottom:-10px; width:2px; height:2px; animation-duration:10s; animation-delay:3s; }
.p6  { left:50%;  bottom:-10px; width:2px; height:2px; animation-duration:11s; animation-delay:1.5s; }
.p7  { left:58%;  bottom:-10px; width:2px; height:2px; animation-duration:13s; animation-delay:2.5s; }
.p8  { left:65%;  bottom:-10px; width:3px; height:3px; animation-duration:8s;  animation-delay:4s; }
.p9  { left:73%;  bottom:-10px; width:2px; height:2px; animation-duration:15s; animation-delay:.8s; }
.p10 { left:80%;  bottom:-10px; width:3px; height:3px; animation-duration:10s; animation-delay:2s; }
.p11 { left:88%;  bottom:-10px; width:2px; height:2px; animation-duration:12s; animation-delay:3.5s; }
.p12 { left:94%;  bottom:-10px; width:2px; height:2px; animation-duration:9s;  animation-delay:1s; }
.p13 { left:18%;  bottom:-10px; width:2px; height:2px; animation-duration:16s; animation-delay:4.5s; }
.p14 { left:35%;  bottom:-10px; width:3px; height:3px; animation-duration:11s; animation-delay:.3s; }
.p15 { left:47%;  bottom:-10px; width:2px; height:2px; animation-duration:13s; animation-delay:5s; }
.p16 { left:62%;  bottom:-10px; width:3px; height:3px; animation-duration:8s;  animation-delay:1.8s; }
.p17 { left:76%;  bottom:-10px; width:2px; height:2px; animation-duration:14s; animation-delay:3s; }
.p18 { left:91%;  bottom:-10px; width:2px; height:2px; animation-duration:10s; animation-delay:2.2s; }

@keyframes pFloat {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: .6; }
    90%  { opacity: .3; }
    100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

/* Hero content */
.hero-body {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1rem;
    background: rgba(232,0,58,.12);
    border: 1px solid rgba(232,0,58,.35);
    border-radius: 4px;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #ff6b8a;
}

.dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: dotPulse 1.5s infinite;
}
@keyframes dotPulse { 50% { opacity: .3; transform: scale(1.4); } }

/* Glitch — crimson + gold */
.hero-title { margin: 0; line-height: 1; }

.glitch {
    font-size: clamp(3.5rem, 12vw, 10rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #fff;
    position: relative;
    display: inline-block;
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.glitch::before {
    color: var(--gold);
    clip-path: polygon(0 0, 100% 0, 100% 42%, 0 42%);
    animation: glitchTop 5s infinite steps(1);
}
.glitch::after {
    color: var(--red);
    clip-path: polygon(0 58%, 100% 58%, 100% 100%, 0 100%);
    animation: glitchBot 5s infinite steps(1);
}

@keyframes glitchTop {
    0%, 90%, 100% { transform: translate(0); opacity: 0; }
    91% { transform: translate(-4px, 2px); opacity: 1; }
    93% { transform: translate(3px, -1px); opacity: 1; }
    95% { opacity: 0; }
}
@keyframes glitchBot {
    0%, 90%, 100% { transform: translate(0); opacity: 0; }
    91% { transform: translate(4px, -2px); opacity: 1; }
    93% { transform: translate(-3px, 1px); opacity: 1; }
    95% { opacity: 0; }
}

.hero-sub {
    font-size: clamp(.9rem, 3vw, 1.8rem);
    letter-spacing: 10px;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: -.3rem;
}

.hero-desc {
    font-size: 1rem;
    color: var(--soft);
    line-height: 1.7;
    font-family: var(--font-alt);
    max-width: 480px;
}
.hero-desc strong { color: var(--text); }

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: scrollBounce 2.2s ease-in-out infinite;
    display: none;
}
@media (max-width: 900px) {
    .scroll-hint { display: block; }
}
.s-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(255,255,255,.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.s-wheel {
    width: 3px; height: 6px;
    background: rgba(255,255,255,.5);
    border-radius: 2px;
    animation: wheelSpin 1.5s infinite;
}
@keyframes scrollBounce { 50% { transform: translateX(-50%) translateY(-6px); } }
@keyframes wheelSpin   { 100% { transform: translateY(10px); opacity: 0; } }


/* ============================================
   STATS
   ============================================ */
.stats-bar {
    padding: 2rem 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat {
    padding: 1.8rem 1rem;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background .3s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(255,255,255,.02); }

.stat-num {
    display: block;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 900;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: .3rem;
}
.stat-lbl {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--muted);
}


/* ============================================
   NOSOTROS
   ============================================ */
.two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
    align-items: center;
}
.col-text .lead { max-width: 100%; margin: 0 0 2rem; }

.feat-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
.feat-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
}
.feat-ico {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: rgba(232,0,58,.08);
    border: 1px solid rgba(232,0,58,.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feat-card h3 {
    font-size: .9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .2rem;
}
.feat-card p {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.5;
    font-family: var(--font-alt);
}

/* Polaroid */
.col-img { position: relative; }

.polaroid {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #0e0e14;
    box-shadow: 0 20px 50px rgba(0,0,0,.6);
    transform: rotate(-2deg);
    transition: transform .4s var(--ease), box-shadow .4s;
}
.polaroid:hover {
    transform: rotate(0) scale(1.01);
    box-shadow: 0 24px 60px rgba(0,0,0,.7), 0 0 20px rgba(232,0,58,.15);
}
.polaroid img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.polaroid p {
    padding: .9rem;
    text-align: center;
    color: var(--muted);
    font-size: .78rem;
    letter-spacing: 2px;
}

.badge-float {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .8rem 1.2rem;
}
.badge-float span { font-size: 1.4rem; }
.badge-float small { display: block; color: var(--muted); font-size: .7rem; }
.badge-float strong { display: block; font-size: .95rem; font-weight: 800; }


/* ============================================
   EVENTS
   ============================================ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    text-align: left;
}

.event-card {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    position: relative;
    overflow: hidden;
}
.featured {
    border-color: rgba(232,0,58,.4);
    background: linear-gradient(135deg, rgba(232,0,58,.06), rgba(201,168,76,.04));
    box-shadow: 0 0 30px rgba(232,0,58,.08);
}
.feat-label {
    position: absolute;
    top: .8rem; right: .8rem;
    padding: .2rem .65rem;
    background: var(--red);
    border-radius: 4px;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.ev-date { display: flex; flex-direction: column; line-height: 1; }
.ev-m {
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
}
.ev-d {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text);
}
.ev-info h3 {
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .35rem;
}
.ev-dj {
    color: var(--gold);
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: .2rem;
}
.ev-det {
    color: var(--muted);
    font-size: .8rem;
}


/* ============================================
   GALLERY
   ============================================ */
.quote {
    text-align: left;
    max-width: 640px;
    margin: 0 auto 3rem;
    padding: 1.5rem 1.8rem 1.5rem 2rem;
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.quote p {
    font-size: 1.05rem;
    color: var(--soft);
    line-height: 1.8;
    font-style: italic;
    font-family: var(--font-alt);
}
.quote footer {
    margin-top: .7rem;
    color: var(--gold);
    font-weight: 700;
    font-size: .82rem;
    font-style: normal;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: .7rem;
}
.g-item {
    border-radius: var(--r-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.g-item img, .g-item video {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.g-item:hover img, .g-item:hover video { transform: scale(1.06); }

.g-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(232,0,58,.45) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}
.g-ov span {
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1.5px solid #fff;
    padding: .35rem 1.1rem;
    border-radius: 4px;
}
.g-item:hover .g-ov { opacity: 1; }
.g-item.large { grid-column: span 2; }
.g-item.tall  { grid-row: span 2; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,.97);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.lightbox.on { opacity: 1; pointer-events: all; }

.lb-img-wrap { max-width: 88vw; max-height: 88vh; }
#lbImg {
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--r-sm);
    transition: opacity .2s;
}

.lb-close {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 1.8rem;
    color: #fff;
    width: 42px; height: 42px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.lb-close:hover { background: var(--red); }

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #fff;
    width: 48px; height: 48px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.lb-nav:hover { background: var(--red); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }


/* ============================================
   CTA
   ============================================ */
.cta-section {
    padding: var(--pad) 0;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}
.cta-orb-a, .cta-orb-b {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
}
.cta-orb-a {
    width: 450px; height: 450px;
    background: rgba(232,0,58,.14);
    top: -200px; left: -60px;
}
.cta-orb-b {
    width: 450px; height: 450px;
    background: rgba(201,168,76,.12);
    bottom: -200px; right: -60px;
}
.cta-body { position: relative; z-index: 2; }
.cta-title {
    font-size: clamp(1.6rem, 5vw, 3.4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: var(--font);
}
.cta-sub {
    font-size: 1.1rem;
    color: var(--soft);
    margin-bottom: 2.2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cta-note {
    margin-top: 1rem;
    color: var(--muted);
    font-size: .82rem;
    letter-spacing: 1px;
}


/* ============================================
   ANUNCIOS + COUNTDOWN
   ============================================ */
.ann-bar {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    z-index: 1100;
    background: rgba(232,0,58,.1);
    border-bottom: 1px solid rgba(232,0,58,.2);
    backdrop-filter: blur(16px);
}
.ann-bar[hidden] { display: none; }
.ann-bar.warn {
    background: rgba(201,168,76,.1);
    border-bottom-color: rgba(201,168,76,.2);
}
.ann-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: .5rem 1.5rem;
    display: flex;
    gap: .6rem;
    align-items: center;
    color: var(--text);
    font-size: .88rem;
}
.ann-text { color: var(--soft); }

.countdown-card {
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    min-width: min(520px, 90vw);
}
.cd-head {
    display: flex;
    justify-content: center;
    gap: .7rem;
    flex-wrap: wrap;
    margin-bottom: .8rem;
}
.cd-title {
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.cd-sub {
    color: var(--soft);
    font-weight: 600;
}
.cd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .6rem;
}
.cd-unit {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .65rem;
    text-align: center;
}
.cd-unit strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
}
.cd-unit span {
    display: block;
    margin-top: .15rem;
    font-size: .72rem;
    letter-spacing: 1px;
    color: var(--muted);
    text-transform: uppercase;
}


/* ============================================
   SHOWS / PISTAS / SÁBADO / FAQ
   ============================================ */
.shows-grid, .pistas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.show-card, .pista-card { padding: 1.3rem; }

.show-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .8rem;
    margin-bottom: .6rem;
}
.show-date {
    font-size: .75rem;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.pill {
    font-size: .65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: .2rem .6rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    color: var(--soft);
}
.pill.ok {
    border-color: rgba(37,211,102,.3);
    color: #25D366;
}
.show-card h3, .pista-card h3 {
    margin-bottom: .4rem;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.show-card p, .pista-card p {
    color: var(--soft);
    line-height: 1.6;
    font-size: .9rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
    margin-top: .8rem;
}
.m-i {
    width: 100%; height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border);
}
.m-v {
    width: 100%; height: 150px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #000;
}

/* Sábado */
.sabado-wrap { max-width: 1050px; margin: 0 auto; }
.sabado-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 1rem;
    align-items: start;
}
.sabado-left, .sabado-right { padding: 1.4rem; }
.sabado-head h3 {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.sabado-date {
    margin-top: .3rem;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .8rem;
}
.sabado-desc {
    margin-top: .9rem;
    color: var(--soft);
    line-height: 1.7;
}
.sabado-block {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.sabado-block h4 {
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: .7rem;
}
.sabado-block ul {
    display: grid;
    gap: .5rem;
    color: var(--soft);
    line-height: 1.5;
}
.flyer-wrap img {
    width: 100%;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    object-fit: cover;
}
.flyer-empty {
    height: 380px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--muted);
    border: 1px dashed rgba(255,255,255,.15);
    border-radius: var(--r-md);
}

/* FAQ */
.faq {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: .8rem;
}
.faq-item { overflow: hidden; }
.faq-q {
    width: 100%;
    text-align: left;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    color: var(--text);
    font-weight: 800;
    letter-spacing: .5px;
}
.faq-ico {
    font-size: 1.1rem;
    color: var(--red);
}
.faq-a {
    padding: 0 1.2rem 1rem;
    color: var(--soft);
    line-height: 1.7;
}

.sug-card { padding: 1.4rem; }


/* ============================================
   REGISTRO
   ============================================ */
.reg-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 1.2rem;
    align-items: start;
}
.reg-card { padding: 1.5rem; }
.reg-info { padding: 1.5rem; }
.reg-info h3 {
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: .8rem;
}
.reg-info ul {
    display: grid;
    gap: .6rem;
    color: var(--soft);
    font-size: .9rem;
    line-height: 1.6;
}
.reg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
    margin-bottom: .9rem;
}
.reg-row:last-of-type { margin-bottom: .7rem; }

.reg-field label {
    display: block;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: .5rem;
}
.reg-field input[type="text"],
.reg-field input[type="date"],
.reg-field input[type="file"] {
    width: 100%;
    padding: .8rem 1rem;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--text);
    font-size: .9rem;
    outline: none;
    transition: border-color .25s var(--ease);
}
.reg-field input:focus {
    border-color: rgba(232,0,58,.45);
}
.reg-field small {
    display: block;
    margin-top: .4rem;
    color: var(--muted);
    font-size: .75rem;
}
.reg-consent {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin-top: .5rem;
    padding-top: .8rem;
    border-top: 1px solid var(--border);
    color: var(--soft);
    font-size: .85rem;
    line-height: 1.4;
}
.reg-consent input { margin-top: .15rem; }

.reg-actions {
    display: grid;
    gap: .7rem;
    margin-top: 1rem;
}
.reg-msg {
    min-height: 1.2rem;
    font-size: .85rem;
    color: var(--soft);
}
.reg-msg.ok  { color: #25D366; }
.reg-msg.err { color: #FF4560; }


/* ============================================
   LOCATION
   ============================================ */
.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: start;
}
.loc-details {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin: 1.5rem 0;
}
.loc-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem;
}
.loc-ico { font-size: 1.5rem; flex-shrink: 0; }
.loc-item h3 {
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: .2rem;
}
.loc-item p {
    color: var(--soft);
    font-size: .9rem;
    line-height: 1.5;
}
.map-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 16px 44px rgba(0,0,0,.5);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #050508;
    padding: 5rem 0 2rem;
    position: relative;
    border-top: 1px solid var(--border);
    overflow: hidden;
}
.footer-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 2px;
    background: var(--grad);
    box-shadow: 0 0 30px 6px rgba(232,0,58,.25);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}
.f-logo {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: .9rem;
    border: 2px solid transparent;
    background: linear-gradient(#050508, #050508) padding-box, var(--grad) border-box;
}
.f-name {
    font-size: 1.1rem;
    letter-spacing: 3px;
    font-weight: 900;
    margin-bottom: .2rem;
}
.f-tag {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: .7rem;
}
.f-desc {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.6;
    max-width: 260px;
}

.f-col h4 {
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 1rem;
}
.f-col ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.f-col ul a {
    color: var(--soft);
    font-size: .88rem;
}
.f-col ul a:hover {
    color: var(--red);
    padding-left: 3px;
}

.f-socials {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.soc-pill {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .6rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: .85rem;
    font-weight: 700;
    color: var(--soft);
    transition: var(--t);
}
.soc-pill:hover {
    transform: translateX(3px);
    color: #fff;
    border-color: transparent;
}
.soc-pill.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.soc-pill.fb:hover { background: #1877F2; }
.soc-pill.tk:hover { background: #111; box-shadow: inset 0 0 0 1px #69C9D0; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.8rem;
    text-align: center;
    color: #444;
    font-size: .82rem;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .two-col { gap: 2.5rem; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .g-item.large { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .f-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    :root { --pad: 3.5rem; }

    .navbar { padding-top: 0; }
    .nav-wrap { align-items: center; }
    .anime-nav-pill {
        background: transparent;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
        animation: none;
        display: contents;
    }
    .anime-mascot { display: none; }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(7,7,13,.97);
        backdrop-filter: blur(16px);
        padding: 1.2rem;
        gap: .2rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.open { display: flex; }
    .nav-link { font-size: .85rem; padding: .6rem .8rem; border-radius: 8px; }
    .nav-link::before, .nav-link::after { display: none !important; }
    .nav-link.active { background: rgba(232,0,58,.15); }
    .nav-ticket-mobile { display: block; margin-top: .5rem; text-align: center; }
    .nav-ticket-desk { display: none; }
    .hamburger { display: flex; }

    /* Stats: horizontal scroll */
    .stats-grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 0;
    }
    .stat {
        min-width: 40vw;
        scroll-snap-align: start;
        flex-shrink: 0;
        border-right: 1px solid var(--border);
    }
    .stat:last-child { border-right: none; }

    .two-col { grid-template-columns: 1fr; }
    .col-img { display: none; }

    .events-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .g-item.large { grid-column: span 2; }
    .g-item.tall  { grid-row: span 1; }

    .reg-grid { grid-template-columns: 1fr; }
    .loc-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .f-desc { max-width: 100%; }

    /* Bottom nav spacing */
    .bottom-nav { display: flex; justify-content: space-around; align-items: center; }
    body { padding-bottom: 4rem; }

    /* WA float above bottom nav */
    .wa-float { bottom: 5.2rem; width: 48px; height: 48px; border-radius: 12px; }
    .wa-float svg { width: 22px; height: 22px; }

    .hero { min-height: 520px; }
    .glitch { letter-spacing: 3px; }
}

@media (max-width: 720px) {
    .reg-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    :root { --pad: 2.8rem; }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-cta a { width: 100%; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .g-item.large { grid-column: span 1; }
    .lb-nav { display: none; }

    .sec-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        letter-spacing: 1px;
        margin-bottom: .7rem;
    }
    .sub, .lead {
        font-size: .9rem;
        margin-bottom: 1.8rem;
    }
    .chip {
        font-size: .65rem;
        padding: .25rem .75rem;
        margin-bottom: .7rem;
    }
    .cta-title { font-size: clamp(1.3rem, 5vw, 1.8rem); }
    .cta-sub { font-size: .95rem; margin-bottom: 1.3rem; }

    .faq-q { padding: .8rem .9rem; font-size: .88rem; }
    .faq-a { padding: 0 .9rem .8rem; font-size: .85rem; }

    .quote { padding: 1rem 1.2rem; margin-bottom: 1.8rem; }
    .quote p { font-size: .9rem; }

    .shows-grid, .pistas-grid { grid-template-columns: 1fr; }
    .sabado-grid { grid-template-columns: 1fr; }

    .footer { padding: 2.8rem 0 1.2rem; }
    .footer-grid { gap: 1.5rem; margin-bottom: 1.5rem; }
    .footer-bottom { padding-top: 1rem; font-size: .75rem; }
    .footer-bottom p { padding-bottom: 3.2rem; }
}


/* ============================================
   ADMIN (modo edición en vivo)
   ============================================ */
.admin-bar[hidden] { display: none !important; }
.admin-bar {
    position: fixed;
    left: 16px; right: 16px; bottom: 16px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-wrap: wrap;
    padding: .7rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(7,7,13,.9);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 50px rgba(0,0,0,.5);
}
.admin-pill {
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: .25rem .65rem;
    border-radius: 999px;
    background: rgba(232,0,58,.14);
    border: 1px solid rgba(232,0,58,.3);
    color: var(--red);
}
.admin-bar-status { color: var(--soft); font-size: .82rem; margin-right: auto; }
.admin-bar-switch { display: flex; align-items: center; gap: .4rem; color: var(--soft); font-size: .82rem; }
.admin-bar-switch input { accent-color: var(--red); }

@media(max-width: 520px) {
    .admin-bar { border-radius: 16px; }
    .admin-bar-status { flex-basis: 100%; margin-right: 0; }
}

/* Inline editing */
.edit-mode [data-edit],
.edit-mode [data-edit-toggle] {
    outline: 1px dashed rgba(232,0,58,.35);
    outline-offset: 3px;
    border-radius: 6px;
}
.edit-mode [data-edit] { cursor: text; }
.edit-mode [data-edit-toggle] { cursor: pointer; }
.edit-mode [data-edit-attr] {
    outline: 1px dashed rgba(201,168,76,.3);
    outline-offset: 3px;
    border-radius: 6px;
    cursor: pointer;
}
.edit-mode [data-edit]:focus {
    outline: 2px solid rgba(232,0,58,.8);
    background: rgba(232,0,58,.06);
}
.edit-mode .feat-label { cursor: pointer; }
.edit-mode .feat-label[hidden] {
    display: inline-flex !important;
    opacity: .35;
}
.edit-mode .sabado-right { display: block !important; }

/* Add-item buttons (edit mode only) */
.sabado-add-btn {
    display: none;
    align-items: center;
    gap: .35rem;
    margin-top: .5rem;
    padding: .35rem .8rem;
    font-size: .78rem;
    font-weight: 700;
    color: rgba(232,0,58,.7);
    background: rgba(232,0,58,.08);
    border: 1px dashed rgba(232,0,58,.25);
    border-radius: 8px;
    cursor: pointer;
    transition: .2s;
}
.sabado-add-btn:hover { background: rgba(232,0,58,.15); color: #E8003A; }
.edit-mode .sabado-add-btn { display: inline-flex; }

.sabado-remove-btn {
    display: none;
    margin-left: .4rem;
    padding: 0 .3rem;
    font-size: .7rem;
    font-weight: 900;
    color: rgba(255,60,60,.5);
    background: none;
    border: none;
    cursor: pointer;
    vertical-align: middle;
}
.sabado-remove-btn:hover { color: #ff3c3c; }
.edit-mode .sabado-remove-btn { display: inline; }

/* Tickets disabled */
.ticket-link.tickets-off {
    pointer-events: none;
    opacity: .7;
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.1);
    box-shadow: none;
    animation: none;
}
.ticket-link.tickets-off .ticket-link-text { font-size: inherit; }
.edit-mode .ticket-link.tickets-off { pointer-events: auto; opacity: 1; }

@media(max-width: 520px) {
    .admin-actions { flex-direction: column; }
    .admin-actions .btn-primary,
    .admin-actions .btn-ghost { width: 100%; }
}


/* ============================================
   ZONA VIP
   ============================================ */
.vip-login-card { max-width: 460px; margin: 0 auto; padding: 1.8rem; }
.vip-login-form { display: flex; gap: .7rem; }
.vip-login-form input {
    flex: 1;
    padding: .85rem 1.1rem;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    outline: none;
    transition: border-color .3s;
}
.vip-login-form input:focus { border-color: rgba(201,168,76,.45); }
.vip-login-form input::placeholder { letter-spacing: 1px; opacity: .3; font-weight: 400; }
.vip-login-msg { margin-top: .7rem; font-size: .8rem; text-align: center; min-height: 1.2rem; }
.vip-login-msg.err { color: #FF4560; }
.vip-login-msg.ok  { color: #00E676; }

.vip-portal { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

.vip-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    gap: .8rem;
}
.vip-welcome h3 { font-size: 1.1rem; font-weight: 900; }

.vip-payment { padding: 1.5rem; }
.vip-payment h3 { font-size: 1.1rem; font-weight: 900; margin-bottom: 1.2rem; }
.vip-steps { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.3rem; }
.vip-step { display: flex; gap: .9rem; align-items: flex-start; }
.vip-step-num {
    flex-shrink: 0;
    width: 30px; height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-weight: 900;
    font-size: .8rem;
}
.vip-step div { padding-top: .2rem; line-height: 1.5; font-size: .88rem; color: var(--soft); }
.vip-step div b { color: var(--text); }

.vip-alias-box {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-top: .5rem;
    padding: .7rem 1rem;
    border-radius: var(--r-sm);
    background: rgba(201,168,76,.07);
    border: 1px solid rgba(201,168,76,.25);
}
.vip-alias-box code {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--gold);
    font-family: var(--font);
}
.btn-copy {
    padding: .3rem .8rem;
    border-radius: 4px;
    border: 1px solid rgba(201,168,76,.35);
    background: transparent;
    color: var(--gold);
    font-weight: 700;
    font-size: .72rem;
    cursor: pointer;
    font-family: var(--font);
    transition: .3s;
}
.btn-copy:hover { background: rgba(201,168,76,.1); }
.btn-copy-sm { font-size: .65rem; padding: .2rem .5rem; }

.vip-upload-area { margin-top: .4rem; }
.vip-file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem;
    border-radius: var(--r-sm);
    border: 2px dashed var(--border);
    color: var(--muted);
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    transition: border-color .3s, background .3s;
}
.vip-file-label:hover { border-color: rgba(232,0,58,.35); background: rgba(232,0,58,.03); }
.vip-file-name { margin-top: .4rem; font-size: .78rem; color: var(--muted); text-align: center; }
.vip-upload-msg { margin-top: .5rem; text-align: center; font-size: .78rem; min-height: 1rem; }
.vip-upload-msg.ok  { color: #00E676; }
.vip-upload-msg.err { color: #FF4560; }

.vip-ticket-status { padding: 1.3rem; text-align: center; }
.vip-ticket-pending {
    padding: .9rem;
    border-radius: var(--r-sm);
    background: rgba(201,168,76,.07);
    border: 1px solid rgba(201,168,76,.25);
    color: var(--gold);
}
.vip-ticket-approved {
    padding: .9rem;
    border-radius: var(--r-sm);
    background: rgba(0,230,118,.06);
    border: 1px solid rgba(0,230,118,.25);
    color: #00E676;
}
.vip-ticket-rejected {
    padding: .9rem;
    border-radius: var(--r-sm);
    background: rgba(255,69,96,.06);
    border: 1px solid rgba(255,69,96,.2);
    color: #FF4560;
}

@media(max-width: 520px) {
    .vip-login-form { flex-direction: column; }
    .vip-alias-box { flex-direction: column; text-align: center; gap: .4rem; }
}


/* ============================================
   MOBILE BOTTOM NAV
   ============================================ */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0; right: 0;
    z-index: 8500;
    background: rgba(7,7,13,.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid var(--border);
    padding: .3rem .5rem calc(.3rem + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 24px rgba(0,0,0,.35);
}
.bnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .12rem;
    padding: .3rem .5rem;
    border-radius: 10px;
    color: var(--muted);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .2s, background .2s;
    -webkit-tap-highlight-color: transparent;
}
.bnav-item svg {
    width: 20px; height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.bnav-item.active,
.bnav-item:active {
    color: var(--red);
    background: rgba(232,0,58,.07);
}


/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(232,0,58,.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(232,0,58,.4); }


/* ── Segmented Date Picker ── */
.date-seg {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: .15rem .3rem;
    width: fit-content;
    transition: border-color .25s var(--ease);
}
.date-seg:focus-within {
    border-color: rgba(232,0,58,.45);
}
.date-seg .seg {
    width: 2.2rem;
    text-align: center;
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-size: .9rem;
    font-variant-numeric: tabular-nums;
    padding: .6rem .1rem;
    caret-color: transparent;
    border-radius: 4px;
    transition: background .15s;
}
.date-seg .seg-year { width: 3.2rem; }
.date-seg .seg::placeholder { color: var(--muted); }
.date-seg .seg:focus { background: rgba(232,0,58,.12); }
.date-seg .sep {
    color: var(--muted);
    font-size: .8rem;
    padding: 0 .1rem;
    user-select: none;
}

/* ── OTP Code Inputs ── */
.otp-inputs {
    display: flex;
    gap: .5rem;
    justify-content: center;
}
.otp-digit {
    width: 2.8rem;
    height: 3.2rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    background: rgba(255,255,255,.05);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    outline: none;
    caret-color: var(--red);
    transition: border-color .2s, background .2s;
}
.otp-digit:focus {
    border-color: var(--red);
    background: rgba(232,0,58,.08);
}
.otp-digit.filled {
    border-color: rgba(232,0,58,.35);
}

/* Accessibility: focus states */
:focus-visible {
  outline: 2px solid #FF0080;
  outline-offset: 2px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #FF0080;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 0, 128, 0.2);
}
