/* 🎬 PODCORN - DISEÑO CINE CLÁSICO 🍿 */

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

:root {
    --gold: #FFD700;
    --dark-gold: #B8860B;
    --red: #DC143C;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --white: #FFFFFF;
    --cream: #F5F5DC;
}

body {
    font-family: 'Poppins', sans-serif !important;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    /* Optimizaciones de rendimiento */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

/* Asegurar que toda la página use Poppins */
* {
    font-family: 'Poppins', sans-serif !important;
}

/* Estilos específicos para elementos de texto */
h1, h2, h3, h4, h5, h6, p, span, div, a, button, input, textarea, select, label {
    font-family: 'Poppins', sans-serif !important;
}

/* Menú con letras amarillas mejoradas */
.nav-ticket:hover {
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

/* 🔆 LUCES PARPADEANTES DE FONDO */
.cinema-lights-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

/* 🍿 LLUVIA GLOBAL DE PALOMITAS DE FONDO */
.global-popcorn-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.global-falling-popcorn {
    position: absolute;
    width: 15px;
    height: 15px;
    background-image: url('images/palomita1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: global-fall 12s infinite linear;
    opacity: 0.4;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.global-falling-popcorn:nth-child(1) { left: 8%; animation-delay: 0s; background-image: url('images/palomita1.png'); width: 12px; height: 12px; }
.global-falling-popcorn:nth-child(2) { left: 16%; animation-delay: 1.2s; background-image: url('images/palomita2.png'); width: 14px; height: 14px; }
.global-falling-popcorn:nth-child(3) { left: 24%; animation-delay: 2.4s; background-image: url('images/palomita3.png'); width: 13px; height: 13px; }
.global-falling-popcorn:nth-child(4) { left: 32%; animation-delay: 3.6s; background-image: url('images/palomita1.png'); width: 15px; height: 15px; }
.global-falling-popcorn:nth-child(5) { left: 40%; animation-delay: 4.8s; background-image: url('images/palomita2.png'); width: 12px; height: 12px; }
.global-falling-popcorn:nth-child(6) { left: 48%; animation-delay: 6s; background-image: url('images/palomita3.png'); width: 14px; height: 14px; }
.global-falling-popcorn:nth-child(7) { left: 56%; animation-delay: 7.2s; background-image: url('images/palomita1.png'); width: 13px; height: 13px; }
.global-falling-popcorn:nth-child(8) { left: 64%; animation-delay: 8.4s; background-image: url('images/palomita2.png'); width: 15px; height: 15px; }
.global-falling-popcorn:nth-child(9) { left: 72%; animation-delay: 9.6s; background-image: url('images/palomita3.png'); width: 12px; height: 12px; }
.global-falling-popcorn:nth-child(10) { left: 80%; animation-delay: 10.8s; background-image: url('images/palomita1.png'); width: 14px; height: 14px; }
.global-falling-popcorn:nth-child(11) { left: 12%; animation-delay: 2s; background-image: url('images/palomita2.png'); width: 13px; height: 13px; }
.global-falling-popcorn:nth-child(12) { left: 28%; animation-delay: 5s; background-image: url('images/palomita3.png'); width: 15px; height: 15px; }
.global-falling-popcorn:nth-child(13) { left: 44%; animation-delay: 8s; background-image: url('images/palomita1.png'); width: 12px; height: 12px; }
.global-falling-popcorn:nth-child(14) { left: 60%; animation-delay: 11s; background-image: url('images/palomita2.png'); width: 14px; height: 14px; }
.global-falling-popcorn:nth-child(15) { left: 76%; animation-delay: 1s; background-image: url('images/palomita3.png'); width: 13px; height: 13px; }

@keyframes global-fall {
    0% { 
        transform: translate3d(0, -50px, 0) rotate(0deg); 
        opacity: 0; 
    }
    5% { 
        opacity: 0.4; 
    }
    95% { 
        opacity: 0.4; 
    }
    100% { 
        transform: translate3d(0, calc(100vh + 50px), 0) rotate(360deg); 
        opacity: 0; 
    }
}

/* 🌊 CASCADA INICIAL DE PALOMITAS */
.initial-popcorn-cascade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 15;
    pointer-events: none;
    overflow: hidden;
}

/* 🍿 LLUVIA RÁPIDA DE PALOMITAS EN BIENVENIDA */
.welcome-popcorn-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    pointer-events: none;
    overflow: hidden;
}

.fast-falling-popcorn {
    position: absolute;
    width: 35px;
    height: 35px;
    background-image: url('images/palomita1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: fast-fall-and-pile 4s ease-in forwards;
    opacity: 0;
}

.fast-falling-popcorn:nth-child(1) { left: 8%; animation-delay: 0s; background-image: url('images/palomita1.png'); width: 32px; height: 32px; }
.fast-falling-popcorn:nth-child(2) { left: 15%; animation-delay: 0.2s; background-image: url('images/palomita2.png'); width: 35px; height: 35px; }
.fast-falling-popcorn:nth-child(3) { left: 22%; animation-delay: 0.4s; background-image: url('images/palomita3.png'); width: 33px; height: 33px; }
.fast-falling-popcorn:nth-child(4) { left: 29%; animation-delay: 0.6s; background-image: url('images/palomita1.png'); width: 38px; height: 38px; }
.fast-falling-popcorn:nth-child(5) { left: 36%; animation-delay: 0.8s; background-image: url('images/palomita2.png'); width: 30px; height: 30px; }
.fast-falling-popcorn:nth-child(6) { left: 43%; animation-delay: 1s; background-image: url('images/palomita3.png'); width: 36px; height: 36px; }
.fast-falling-popcorn:nth-child(7) { left: 50%; animation-delay: 1.2s; background-image: url('images/palomita1.png'); width: 34px; height: 34px; }
.fast-falling-popcorn:nth-child(8) { left: 57%; animation-delay: 1.4s; background-image: url('images/palomita2.png'); width: 37px; height: 37px; }
.fast-falling-popcorn:nth-child(9) { left: 64%; animation-delay: 1.6s; background-image: url('images/palomita3.png'); width: 31px; height: 31px; }
.fast-falling-popcorn:nth-child(10) { left: 71%; animation-delay: 1.8s; background-image: url('images/palomita1.png'); width: 35px; height: 35px; }
.fast-falling-popcorn:nth-child(11) { left: 78%; animation-delay: 2s; background-image: url('images/palomita2.png'); width: 33px; height: 33px; }
.fast-falling-popcorn:nth-child(12) { left: 85%; animation-delay: 2.2s; background-image: url('images/palomita3.png'); width: 39px; height: 39px; }
.fast-falling-popcorn:nth-child(13) { left: 12%; animation-delay: 0.3s; background-image: url('images/palomita1.png'); width: 32px; height: 32px; }
.fast-falling-popcorn:nth-child(14) { left: 19%; animation-delay: 0.7s; background-image: url('images/palomita2.png'); width: 36px; height: 36px; }
.fast-falling-popcorn:nth-child(15) { left: 26%; animation-delay: 1.1s; background-image: url('images/palomita3.png'); width: 34px; height: 34px; }
.fast-falling-popcorn:nth-child(16) { left: 33%; animation-delay: 1.5s; background-image: url('images/palomita1.png'); width: 38px; height: 38px; }
.fast-falling-popcorn:nth-child(17) { left: 40%; animation-delay: 1.9s; background-image: url('images/palomita2.png'); width: 31px; height: 31px; }
.fast-falling-popcorn:nth-child(18) { left: 47%; animation-delay: 2.3s; background-image: url('images/palomita3.png'); width: 37px; height: 37px; }
.fast-falling-popcorn:nth-child(19) { left: 54%; animation-delay: 0.5s; background-image: url('images/palomita1.png'); width: 33px; height: 33px; }
.fast-falling-popcorn:nth-child(20) { left: 61%; animation-delay: 0.9s; background-image: url('images/palomita2.png'); width: 35px; height: 35px; }

@keyframes fast-fall-and-pile {
    0% { 
        transform: translate3d(0, -100px, 0) rotate(0deg) scale(1); 
        opacity: 0; 
    }
    3% { 
        opacity: 1; 
    }
    25% { 
        transform: translate3d(0, calc(100vh - 250px), 0) rotate(180deg) scale(1); 
        opacity: 1; 
    }
    35% { 
        transform: translate3d(0, calc(100vh - 200px), 0) rotate(270deg) scale(1); 
        opacity: 1; 
    }
    45% { 
        transform: translate3d(0, calc(100vh - 170px), 0) rotate(360deg) scale(0.95); 
        opacity: 1; 
    }
    55% { 
        transform: translate3d(0, calc(100vh - 150px), 0) rotate(400deg) scale(0.9); 
        opacity: 1; 
    }
    65% { 
        transform: translate3d(0, calc(100vh - 140px), 0) rotate(420deg) scale(0.85); 
        opacity: 1; 
    }
    75% { 
        transform: translate3d(0, calc(100vh - 135px), 0) rotate(430deg) scale(0.8); 
        opacity: 1; 
    }
    85% { 
        transform: translate3d(0, calc(100vh - 132px), 0) rotate(435deg) scale(0.7); 
        opacity: 0.9; 
    }
    92% { 
        transform: translate3d(0, calc(100vh - 130px), 0) rotate(440deg) scale(0.5); 
        opacity: 0.6; 
    }
    97% { 
        transform: translate3d(0, calc(100vh - 128px), 0) rotate(445deg) scale(0.3); 
        opacity: 0.3; 
    }
    100% { 
        transform: translate3d(0, calc(100vh - 125px), 0) rotate(450deg) scale(0); 
        opacity: 0; 
    }
}

.cascade-popcorn {
    position: absolute;
    width: 50px;
    height: 50px;
    background-image: url('images/palomita1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: cascade-fall 3s ease-out forwards;
    opacity: 0;
}

.cascade-popcorn:nth-child(1) { left: 5%; animation-delay: 0.1s; background-image: url('images/palomita1.png'); width: 45px; height: 45px; }
.cascade-popcorn:nth-child(2) { left: 10%; animation-delay: 0.2s; background-image: url('images/palomita2.png'); width: 50px; height: 50px; }
.cascade-popcorn:nth-child(3) { left: 15%; animation-delay: 0.3s; background-image: url('images/palomita3.png'); width: 48px; height: 48px; }
.cascade-popcorn:nth-child(4) { left: 20%; animation-delay: 0.4s; background-image: url('images/palomita1.png'); width: 55px; height: 55px; }
.cascade-popcorn:nth-child(5) { left: 25%; animation-delay: 0.5s; background-image: url('images/palomita2.png'); width: 42px; height: 42px; }
.cascade-popcorn:nth-child(6) { left: 30%; animation-delay: 0.6s; background-image: url('images/palomita3.png'); width: 52px; height: 52px; }
.cascade-popcorn:nth-child(7) { left: 35%; animation-delay: 0.7s; background-image: url('images/palomita1.png'); width: 46px; height: 46px; }
.cascade-popcorn:nth-child(8) { left: 40%; animation-delay: 0.8s; background-image: url('images/palomita2.png'); width: 54px; height: 54px; }
.cascade-popcorn:nth-child(9) { left: 45%; animation-delay: 0.9s; background-image: url('images/palomita3.png'); width: 44px; height: 44px; }
.cascade-popcorn:nth-child(10) { left: 50%; animation-delay: 1s; background-image: url('images/palomita1.png'); width: 51px; height: 51px; }
.cascade-popcorn:nth-child(11) { left: 55%; animation-delay: 1.1s; background-image: url('images/palomita2.png'); width: 43px; height: 43px; }
.cascade-popcorn:nth-child(12) { left: 60%; animation-delay: 1.2s; background-image: url('images/palomita3.png'); width: 49px; height: 49px; }
.cascade-popcorn:nth-child(13) { left: 65%; animation-delay: 1.3s; background-image: url('images/palomita1.png'); width: 47px; height: 47px; }
.cascade-popcorn:nth-child(14) { left: 70%; animation-delay: 1.4s; background-image: url('images/palomita2.png'); width: 53px; height: 53px; }
.cascade-popcorn:nth-child(15) { left: 75%; animation-delay: 1.5s; background-image: url('images/palomita3.png'); width: 45px; height: 45px; }
.cascade-popcorn:nth-child(16) { left: 80%; animation-delay: 1.6s; background-image: url('images/palomita1.png'); width: 50px; height: 50px; }
.cascade-popcorn:nth-child(17) { left: 85%; animation-delay: 1.7s; background-image: url('images/palomita2.png'); width: 48px; height: 48px; }
.cascade-popcorn:nth-child(18) { left: 90%; animation-delay: 1.8s; background-image: url('images/palomita3.png'); width: 52px; height: 52px; }
.cascade-popcorn:nth-child(19) { left: 95%; animation-delay: 1.9s; background-image: url('images/palomita1.png'); width: 46px; height: 46px; }
.cascade-popcorn:nth-child(20) { left: 12%; animation-delay: 2s; background-image: url('images/palomita2.png'); width: 51px; height: 51px; }
.cascade-popcorn:nth-child(21) { left: 18%; animation-delay: 2.1s; background-image: url('images/palomita3.png'); width: 47px; height: 47px; }
.cascade-popcorn:nth-child(22) { left: 33%; animation-delay: 2.2s; background-image: url('images/palomita1.png'); width: 49px; height: 49px; }
.cascade-popcorn:nth-child(23) { left: 52%; animation-delay: 2.3s; background-image: url('images/palomita2.png'); width: 54px; height: 54px; }
.cascade-popcorn:nth-child(24) { left: 68%; animation-delay: 2.4s; background-image: url('images/palomita3.png'); width: 44px; height: 44px; }
.cascade-popcorn:nth-child(25) { left: 78%; animation-delay: 2.5s; background-image: url('images/palomita1.png'); width: 52px; height: 52px; }
.cascade-popcorn:nth-child(26) { left: 88%; animation-delay: 2.6s; background-image: url('images/palomita2.png'); width: 46px; height: 46px; }
.cascade-popcorn:nth-child(27) { left: 7%; animation-delay: 2.7s; background-image: url('images/palomita3.png'); width: 50px; height: 50px; }
.cascade-popcorn:nth-child(28) { left: 22%; animation-delay: 2.8s; background-image: url('images/palomita1.png'); width: 48px; height: 48px; }
.cascade-popcorn:nth-child(29) { left: 38%; animation-delay: 2.9s; background-image: url('images/palomita2.png'); width: 53px; height: 53px; }
.cascade-popcorn:nth-child(30) { left: 58%; animation-delay: 3s; background-image: url('images/palomita3.png'); width: 45px; height: 45px; }
.cascade-popcorn:nth-child(31) { left: 73%; animation-delay: 3.1s; background-image: url('images/palomita1.png'); width: 51px; height: 51px; }
.cascade-popcorn:nth-child(32) { left: 92%; animation-delay: 3.2s; background-image: url('images/palomita2.png'); width: 47px; height: 47px; }
.cascade-popcorn:nth-child(33) { left: 14%; animation-delay: 3.3s; background-image: url('images/palomita3.png'); width: 49px; height: 49px; }
.cascade-popcorn:nth-child(34) { left: 28%; animation-delay: 3.4s; background-image: url('images/palomita1.png'); width: 54px; height: 54px; }
.cascade-popcorn:nth-child(35) { left: 42%; animation-delay: 3.5s; background-image: url('images/palomita2.png'); width: 43px; height: 43px; }
.cascade-popcorn:nth-child(36) { left: 63%; animation-delay: 3.6s; background-image: url('images/palomita3.png'); width: 52px; height: 52px; }
.cascade-popcorn:nth-child(37) { left: 77%; animation-delay: 3.7s; background-image: url('images/palomita1.png'); width: 46px; height: 46px; }
.cascade-popcorn:nth-child(38) { left: 3%; animation-delay: 3.8s; background-image: url('images/palomita2.png'); width: 50px; height: 50px; }
.cascade-popcorn:nth-child(39) { left: 47%; animation-delay: 3.9s; background-image: url('images/palomita3.png'); width: 48px; height: 48px; }
.cascade-popcorn:nth-child(40) { left: 87%; animation-delay: 4s; background-image: url('images/palomita1.png'); width: 55px; height: 55px; }

@keyframes cascade-fall {
    0% { 
        transform: translate3d(0, -100px, 0) rotate(0deg) scale(0); 
        opacity: 0; 
    }
    10% { 
        opacity: 1; 
        transform: translate3d(0, -50px, 0) rotate(45deg) scale(1); 
    }
    80% { 
        opacity: 1; 
        transform: translate3d(0, calc(100vh - 100px), 0) rotate(720deg) scale(1); 
    }
    100% { 
        transform: translate3d(0, calc(100vh + 50px), 0) rotate(900deg) scale(0.5); 
        opacity: 0; 
    }
}

.light-bulb {
    position: absolute;
    top: 20px;
    left: var(--position);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gold), 0 0 40px var(--gold);
    animation: flicker 2s infinite ease-in-out;
    animation-delay: var(--delay);
}

@keyframes flicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    25% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
    75% { opacity: 0.5; transform: scale(0.9); }
}

/* 🎭 HEADER CON MARQUESINA */
.cinema-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    border-bottom: 3px solid var(--gold);
    z-index: 1000;
    padding: 0 20px;
}

.marquee-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.marquee-bulbs {
    position: absolute;
}

.marquee-bulbs.top {
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold) 0px,
        var(--gold) 10px,
        var(--dark-gold) 10px,
        var(--dark-gold) 20px
    );
    animation: marquee-lights 1s infinite;
}

.marquee-bulbs.bottom {
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold) 0px,
        var(--gold) 10px,
        var(--dark-gold) 10px,
        var(--dark-gold) 20px
    );
    animation: marquee-lights 1s infinite reverse;
}

@keyframes marquee-lights {
    0% { background-position: 0px 0px; }
    100% { background-position: 20px 0px; }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-cinema {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-cinema:hover {
    transform: scale(1.05);
}

.popcorn-logo {
    position: relative;
    width: 50px;
    height: 50px;
}

.popcorn-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--gold));
}

.popcorn-particles {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    pointer-events: none;
}

.popcorn-particles::before,
.popcorn-particles::after {
    content: '🍿';
    position: absolute;
    font-size: 12px;
    animation: pop 2s infinite ease-in-out;
}

.popcorn-particles::before {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.popcorn-particles::after {
    bottom: 0;
    right: 0;
    animation-delay: 1s;
}

@keyframes pop {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.cinema-title {
    font-size: 28px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif !important;
    color: var(--gold) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.cinema-nav {
    display: flex;
    gap: 20px;
}

.nav-ticket {
    background: linear-gradient(135deg, var(--red) 0%, var(--dark-gold) 100%);
    color: var(--gold) !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.nav-ticket::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.nav-ticket:hover::before {
    left: 100%;
}

.nav-ticket:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

/* Asegurar que el logo del header también use Poppins */
.logo-cinema, .popcorn-logo {
    font-family: 'Poppins', sans-serif !important;
}

.cinema-stripe {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 🎭 PANTALLA DE BIENVENIDA CON TELÓN */
.welcome-cinema {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/fondo.png') center center/cover no-repeat;
    padding-top: 80px;
    overflow: hidden;
}

.theater-curtain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* 🔆 MARCO DE CINE CON LUCES PRINCIPALES */
.cinema-frame-main {
    position: absolute;
    top: 100px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    border: 8px solid var(--gold);
    border-radius: 20px;
    z-index: 3;
    pointer-events: none;
}

.frame-lights {
    position: absolute;
}

.frame-lights.top-lights {
    top: -15px;
    left: 0;
    right: 0;
    height: 30px;
}

.frame-lights.bottom-lights {
    bottom: -15px;
    left: 0;
    right: 0;
    height: 30px;
}

.frame-lights.left-lights {
    top: 0;
    bottom: 0;
    left: -15px;
    width: 30px;
}

.frame-lights.right-lights {
    top: 0;
    bottom: 0;
    right: -15px;
    width: 30px;
}

.bulb-row, .bulb-column {
    width: 100%;
    height: 100%;
    position: relative;
}

.bulb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.bulb-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    height: 100%;
}

/* Focos individuales del marco */
.frame-bulb {
    width: 36px;
    height: 36px;
    background: radial-gradient(circle, var(--gold) 0%, #FFA500 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 16px var(--gold),
        0 0 30px var(--gold),
        0 0 50px var(--gold),
        inset 0 0 10px rgba(255,255,255,0.3);
    animation: frame-bulb-flicker 2s infinite ease-in-out;
    border: 4px solid #FF8C00;
    position: relative;
}

.frame-bulb::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0.9;
}

@keyframes frame-bulb-flicker {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 
            0 0 16px var(--gold),
            0 0 30px var(--gold),
            0 0 50px var(--gold),
            inset 0 0 10px rgba(255,255,255,0.3);
        background: radial-gradient(circle, var(--gold) 0%, #FFA500 100%);
    }
    20% { 
        opacity: 0.2; 
        transform: scale(0.95);
        box-shadow: 
            0 0 6px var(--gold),
            0 0 12px var(--gold),
            inset 0 0 4px rgba(255,255,255,0.1);
        background: radial-gradient(circle, #B8860B 0%, #8B6914 100%);
    }
    40% { 
        opacity: 1; 
        transform: scale(1.05);
        box-shadow: 
            0 0 24px var(--gold),
            0 0 40px var(--gold),
            0 0 60px var(--gold),
            inset 0 0 12px rgba(255,255,255,0.4);
        background: radial-gradient(circle, var(--gold) 0%, #FFA500 100%);
    }
    60% { 
        opacity: 0.8; 
        transform: scale(0.98);
        box-shadow: 
            0 0 12px var(--gold),
            0 0 24px var(--gold),
            0 0 36px var(--gold),
            inset 0 0 8px rgba(255,255,255,0.2);
        background: radial-gradient(circle, #DAA520 0%, #CD853F 100%);
    }
    80% { 
        opacity: 1; 
        transform: scale(1.02);
        box-shadow: 
            0 0 20px var(--gold),
            0 0 36px var(--gold),
            0 0 56px var(--gold),
            inset 0 0 10px rgba(255,255,255,0.35);
        background: radial-gradient(circle, var(--gold) 0%, #FFA500 100%);
    }
}

/* 🍿 CONTENIDO DE BIENVENIDA */
.welcome-content-cinema {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 800px;
    padding: 40px;
}

.popcorn-explosion {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    pointer-events: none;
}

.popcorn-kernel {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--cream);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: kernel-pop 3s infinite ease-in-out;
}

.popcorn-kernel:nth-child(1) { left: 10%; animation-delay: 0s; }
.popcorn-kernel:nth-child(2) { left: 30%; animation-delay: 0.5s; }
.popcorn-kernel:nth-child(3) { left: 50%; animation-delay: 1s; }
.popcorn-kernel:nth-child(4) { left: 70%; animation-delay: 1.5s; }
.popcorn-kernel:nth-child(5) { left: 90%; animation-delay: 2s; }

@keyframes kernel-pop {
    0% { transform: translateY(0) scale(0) rotate(0deg); opacity: 0; }
    20% { transform: translateY(-30px) scale(1) rotate(180deg); opacity: 1; }
    80% { transform: translateY(-60px) scale(1.2) rotate(360deg); opacity: 1; }
    100% { transform: translateY(-100px) scale(0) rotate(540deg); opacity: 0; }
}

.cinema-logo-showcase {
    position: relative;
    margin-bottom: 10px;
}

.main-logo {
    width: 750px;
    height: 750px;
    object-fit: contain;
    filter: drop-shadow(0 0 50px var(--gold));
    animation: logo-glow 2s infinite alternate ease-in-out;
    max-width: 90vw;
    max-height: 60vh;
}

@keyframes logo-glow {
    0% { filter: drop-shadow(0 0 30px var(--gold)); }
    100% { filter: drop-shadow(0 0 50px var(--gold)) drop-shadow(0 0 70px var(--white)); }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    animation: glow-pulse 2s infinite ease-in-out;
    max-width: 95vw;
    max-height: 60vh;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.cinema-welcome-title {
    font-size: 4rem;
    font-weight: 900;
    margin: 5px 0 20px 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.letter-neon {
    display: inline-block;
    animation: neon-flicker 2s infinite ease-in-out;
    animation-delay: calc(var(--i) * 0.1s);
    color: var(--white) !important;
    -webkit-text-stroke: 2px var(--black);
    text-stroke: 2px var(--black);
}

.letter-neon:nth-child(1) { --i: 1; color: var(--white); }
.letter-neon:nth-child(2) { --i: 2; color: var(--white); }
.letter-neon:nth-child(3) { --i: 3; color: var(--white); }
.letter-neon:nth-child(4) { --i: 4; color: var(--white); }
.letter-neon:nth-child(5) { --i: 5; color: var(--white); }
.letter-neon:nth-child(6) { --i: 6; color: var(--white); }
.letter-neon:nth-child(7) { --i: 7; color: var(--white); }
.letter-neon:nth-child(8) { --i: 8; color: var(--white); }
.letter-neon:nth-child(9) { --i: 9; color: var(--white); }
.letter-neon:nth-child(10) { --i: 10; color: var(--white); }
.letter-neon:nth-child(11) { --i: 11; color: var(--white); }
.letter-neon:nth-child(12) { --i: 12; color: var(--white); }

@keyframes neon-flicker {
    0%, 100% { 
        text-shadow: 
            0 0 10px var(--white), 
            0 0 20px var(--white), 
            0 0 30px var(--gold),
            3px 3px 6px rgba(0,0,0,0.8);
        opacity: 1;
    }
    50% { 
        text-shadow: 
            0 0 5px var(--white), 
            0 0 10px var(--white),
            3px 3px 6px rgba(0,0,0,0.8);
        opacity: 0.9;
    }
}

.cinema-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.cinema-description {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.cinema-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.film-strip {
    display: flex;
    gap: 5px;
    background: var(--dark-gray);
    padding: 5px 10px;
    border-radius: 5px;
    border: 2px solid var(--gold);
}

.film-hole {
    width: 8px;
    height: 8px;
    background: var(--black);
    border-radius: 50%;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 🎬 CARRUSEL ESTILO CINE */
.cinema-carousel-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 20px;
    position: relative;
}

.film-projector {
    position: absolute;
    top: 20px;
    right: 50px;
    width: 60px;
    height: 60px;
    background: var(--dark-gray);
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.projector-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--gold);
    animation: projector-beam 3s infinite ease-in-out;
}

@keyframes projector-beam {
    0%, 100% { box-shadow: 0 0 30px var(--gold); }
    50% { box-shadow: 0 0 60px var(--gold), 0 0 90px var(--white); }
}

.cinema-info-board {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--dark-gray);
    border: 3px solid var(--gold);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.cinema-info-board h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.cinema-info-board p {
    font-size: 1.2rem;
    color: var(--cream);
}

.film-reel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 400px;
    perspective: 1000px;
}

.film-reel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.film-frame {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--black);
    border: 5px solid var(--gold);
    border-radius: 10px;
    transition: all 0.5s ease;
    cursor: pointer;
    overflow: hidden;
}

.film-frame.active {
    transform: translateZ(0) scale(1.1);
    z-index: 10;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

.film-frame:not(.active) {
    transform: translateZ(-100px) scale(0.8);
    opacity: 0.7;
}

.film-frame:nth-child(even):not(.active) {
    transform: translateZ(-100px) scale(0.8) translateX(-200px);
}

.film-frame:nth-child(odd):not(.active) {
    transform: translateZ(-100px) scale(0.8) translateX(200px);
}

.frame-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--gold);
    border-radius: 5px;
    pointer-events: none;
}

.film-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.film-holes {
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        var(--black) 0px,
        var(--black) 10px,
        transparent 10px,
        transparent 20px
    );
}

.film-holes.top { top: 0; }
.film-holes.bottom { bottom: 0; }

.cinema-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.cinema-nav-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.cinema-nav-btn.prev { left: 20px; }
.cinema-nav-btn.next { right: 20px; }

.film-controls {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.play-pause-cinema {
    background: var(--red);
    color: var(--white);
    border: 3px solid var(--gold);
    padding: 15px 25px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-pause-cinema:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

/* 🎭 SECCIÓN NOSOTROS CON ESCENARIO */
.cinema-about-section {
    min-height: 100vh;
    background: linear-gradient(45deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
    position: relative;
    padding: 80px 20px 20px;
}

.vintage-film-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 2px,
            rgba(255, 215, 0, 0.03) 2px,
            rgba(255, 215, 0, 0.03) 4px
        );
    pointer-events: none;
}

.cinema-stage {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.stage-lights {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
}

.spotlight {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.1;
    animation: spotlight-sweep 4s infinite ease-in-out;
}

.left-spot {
    left: 10%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    animation-delay: 0s;
}

.right-spot {
    right: 10%;
    background: radial-gradient(circle, var(--white) 0%, transparent 70%);
    animation-delay: 2s;
}

@keyframes spotlight-sweep {
    0%, 100% { transform: rotate(-10deg); opacity: 0.1; }
    50% { transform: rotate(10deg); opacity: 0.3; }
}

.about-cinema-content {
    padding: 40px;
}

.cinema-title-card {
    text-align: center;
    margin-bottom: 60px;
    padding: 30px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    border: 3px solid var(--gold);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.cinema-title-card h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.cinema-title-card p {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto;
}

.cinema-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.popcorn-machine {
    text-align: center;
}

.machine-body {
    position: relative;
    width: 200px;
    height: 250px;
    background: linear-gradient(135deg, var(--red) 0%, var(--dark-gold) 100%);
    border-radius: 20px 20px 10px 10px;
    margin: 0 auto 20px;
    border: 4px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.machine-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--white));
}

.popcorn-pop {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 60px;
    overflow: hidden;
}

.pop-kernel {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--cream);
    border-radius: 50%;
    animation: machine-pop 2s infinite ease-in-out;
}

.pop-kernel:nth-child(1) { left: 30%; animation-delay: 0s; }
.pop-kernel:nth-child(2) { left: 50%; animation-delay: 0.5s; }
.pop-kernel:nth-child(3) { left: 70%; animation-delay: 1s; }

@keyframes machine-pop {
    0% { transform: translateY(60px) scale(0); opacity: 0; }
    20% { transform: translateY(40px) scale(1); opacity: 1; }
    80% { transform: translateY(0px) scale(1.2); opacity: 1; }
    100% { transform: translateY(-20px) scale(0); opacity: 0; }
}

.machine-base {
    width: 220px;
    height: 40px;
    background: var(--dark-gray);
    border-radius: 10px;
    border: 3px solid var(--gold);
    margin: 0 auto;
}

.cinema-features h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.cinema-features p {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin: 30px 0;
    justify-items: center;
}

.feature-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--gold);
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.2);
}

.feature-image:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.ticket {
    display: flex;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--red);
    transition: transform 0.3s ease;
}

.ticket:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.ticket-stub {
    background: var(--red);
    color: var(--white);
    padding: 15px 20px;
    font-weight: bold;
    font-size: 0.9rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.ticket-info {
    padding: 15px 20px;
    color: var(--black);
    font-weight: 600;
    flex: 1;
}

.cinema-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
    color: var(--white);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.cinema-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

.cinema-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-display {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    border: 3px solid var(--gold);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-display:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 1px;
}

/* 🍿 SERVICIOS CON LLUVIA DE PALOMITAS */
.cinema-services-section {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, var(--dark-gray) 0%, var(--black) 100%);
    position: relative;
    padding: 80px 20px 20px;
    overflow: hidden;
}

/* 🍿 LLUVIA CONTINUA DE PALOMITAS */
.popcorn-rain {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.falling-popcorn {
    position: absolute;
    width: 25px;
    height: 25px;
    background-image: url('images/palomita1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: fall-popcorn 8s infinite linear;
    opacity: 0.8;
}

.falling-popcorn:nth-child(1) { 
    left: 5%; 
    animation-delay: 0s; 
    background-image: url('images/palomita1.png');
    width: 20px;
    height: 20px;
}
.falling-popcorn:nth-child(2) { 
    left: 15%; 
    animation-delay: 1s; 
    background-image: url('images/palomita2.png');
    width: 22px;
    height: 22px;
}
.falling-popcorn:nth-child(3) { 
    left: 25%; 
    animation-delay: 2s; 
    background-image: url('images/palomita3.png');
    width: 24px;
    height: 24px;
}
.falling-popcorn:nth-child(4) { 
    left: 35%; 
    animation-delay: 3s; 
    background-image: url('images/palomita1.png');
    width: 21px;
    height: 21px;
}
.falling-popcorn:nth-child(5) { 
    left: 45%; 
    animation-delay: 4s; 
    background-image: url('images/palomita2.png');
    width: 23px;
    height: 23px;
}
.falling-popcorn:nth-child(6) { 
    left: 55%; 
    animation-delay: 1.5s; 
    background-image: url('images/palomita3.png');
    width: 20px;
    height: 20px;
}
.falling-popcorn:nth-child(7) { 
    left: 65%; 
    animation-delay: 2.5s; 
    background-image: url('images/palomita1.png');
    width: 25px;
    height: 25px;
}
.falling-popcorn:nth-child(8) { 
    left: 75%; 
    animation-delay: 3.5s; 
    background-image: url('images/palomita2.png');
    width: 22px;
    height: 22px;
}
.falling-popcorn:nth-child(9) { 
    left: 85%; 
    animation-delay: 4.5s; 
    background-image: url('images/palomita3.png');
    width: 24px;
    height: 24px;
}
.falling-popcorn:nth-child(10) { 
    left: 95%; 
    animation-delay: 5s; 
    background-image: url('images/palomita1.png');
    width: 21px;
    height: 21px;
}

@keyframes fall-popcorn {
    0% { 
        transform: translateY(-100px) rotate(0deg); 
        opacity: 0; 
    }
    5% { 
        opacity: 0.8; 
    }
    95% { 
        opacity: 0.8; 
    }
    100% { 
        transform: translateY(calc(100vh + 100px)) rotate(720deg); 
        opacity: 0; 
    }
}

.services-cinema-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-marquee {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    border: 4px solid var(--gold);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.services-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
    animation: marquee-sweep 3s infinite;
}

@keyframes marquee-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.services-marquee h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    position: relative;
}

.services-marquee p {
    font-size: 1.3rem;
    color: var(--cream);
    position: relative;
}

.cinema-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-poster {
    position: relative;
    transition: transform 0.3s ease;
}

.service-poster:hover {
    transform: translateY(-10px) scale(1.02);
}

.poster-frame {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    border: 4px solid var(--gold);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.poster-lights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold) 0px,
        var(--gold) 10px,
        var(--red) 10px,
        var(--red) 20px
    );
    animation: poster-glow 2s infinite;
}

@keyframes poster-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--gold));
}

.poster-frame h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.poster-frame p {
    font-size: 1rem;
    color: var(--cream);
    line-height: 1.6;
}

.poster-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--red);
}

.poster-corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.poster-corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.poster-corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.poster-corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

/* 🎭 CLIENTES CON CARTELERA */
.cinema-clients-section {
    min-height: 100vh;
    background: linear-gradient(45deg, var(--black) 0%, var(--dark-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 20px;
}

.clients-cinema-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.billboard-header {
    margin-bottom: 60px;
}

.billboard-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.billboard-header p {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto;
}

.cinema-billboard {
    position: relative;
    background: var(--black);
    border: 6px solid var(--gold);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.4);
}

.billboard-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.billboard-lights {
    position: absolute;
    left: 0;
    right: 0;
    height: 15px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold) 0px,
        var(--gold) 15px,
        var(--red) 15px,
        var(--red) 30px
    );
    animation: billboard-chase 1.5s infinite linear;
}

.billboard-lights.top { top: 0; }
.billboard-lights.bottom { bottom: 0; }

@keyframes billboard-chase {
    0% { background-position: 0px 0px; }
    100% { background-position: 30px 0px; }
}

.client-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.client-poster {
    position: relative;
    width: 150px;
    height: 150px;
    border: 4px solid var(--gold);
    border-radius: 15px;
    padding: 20px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-poster:hover {
    transform: scale(1.1) rotateY(5deg);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.client-poster img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px var(--gold));
}

.poster-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--gold), var(--red), var(--gold));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.client-poster:hover .poster-glow {
    opacity: 0.3;
}

/* 🎫 CONTACTO CON TAQUILLA */
.cinema-contact-section {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, var(--dark-gray) 0%, var(--black) 100%);
    padding: 80px 20px 20px;
}

.contact-cinema-content {
    max-width: 1200px;
    margin: 0 auto;
}

.box-office-header {
    text-align: center;
    margin-bottom: 60px;
}

.box-office-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.box-office-header p {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto;
}

.box-office-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.box-office-window {
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    border: 5px solid var(--gold);
    border-radius: 20px;
    padding: 20px 40px 40px 40px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.window-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.frame-bulbs {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 4px solid var(--gold);
    border-radius: 24px;
    background: linear-gradient(45deg, var(--gold), var(--red), var(--gold));
}

.ticket-booth h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.ticket-booth p {
    font-size: 1.1rem;
    color: var(--cream);
    text-align: center;
    margin-bottom: 30px;
}

.contact-tickets {
    display: grid !important;
    gap: 20px;
    opacity: 1 !important;
    visibility: visible !important;
}

.contact-ticket {
    display: flex !important;
    align-items: center;
    gap: 20px;
    background: #000000 !important;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    /* Información siempre visible sin animaciones */
}

.ticket-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--gold));
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    background: rgba(255, 215, 0, 0.1);
    padding: 10px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.ticket-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold) !important;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    opacity: 1 !important;
    visibility: visible !important;
}

.ticket-details p {
    color: var(--white) !important;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: static !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    text-align: left !important;
    font-family: 'Poppins', sans-serif !important;
}

.ticket-machine {
    background: linear-gradient(135deg, var(--red) 0%, var(--dark-gold) 100%);
    border: 5px solid var(--gold);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(220, 20, 60, 0.3);
}

.machine-header {
    text-align: center;
    margin-bottom: 30px;
}

.machine-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.ticket-form {
    display: grid;
    gap: 20px;
}

.form-slot {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-slot label {
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-slot input,
.form-slot select,
.form-slot textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--black);
    transition: all 0.3s ease;
}

.form-slot input:focus,
.form-slot select:focus,
.form-slot textarea:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    background: var(--white);
}

.form-slot textarea {
    resize: vertical;
    min-height: 120px;
}

.ticket-submit {
    background: linear-gradient(135deg, var(--gold) 0%, var(--white) 100%);
    color: var(--black);
    border: 3px solid var(--white);
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.ticket-submit:hover {
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* 🎬 FOOTER CON CRÉDITOS */
.cinema-footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    border-top: 4px solid var(--gold);
    padding: 40px 20px;
    text-align: center;
}

.credits-roll {
    max-width: 800px;
    margin: 0 auto;
}

.credits-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-popcorn {
    font-size: 2rem;
    animation: pop-rotate 3s infinite ease-in-out;
}

@keyframes pop-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.credits-content p {
    color: var(--cream);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 5px 0;
}

/* 🎭 ASIENTOS FINALES */
.cinema-seats-finale {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.cinema-seats-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cinema-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 60px;
    border-radius: 20px;
    border: 3px solid var(--gold);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

.cinema-overlay h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.cinema-overlay p {
    font-size: 1.3rem;
    color: var(--cream);
}

/* 🎬 SCROLL TO TOP */
.scroll-to-top-cinema {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top-cinema.visible {
    opacity: 1;
    visibility: visible;
}

.film-reel-scroll {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    animation: reel-spin 3s infinite linear;
    border: 3px solid var(--red);
}

@keyframes reel-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 📱 RESPONSIVE DESIGN */
/* 📱 RESPONSIVE DESIGN MEJORADO */

/* Tablets y pantallas medianas */
@media (max-width: 1024px) {
    .cinema-showcase {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .box-office-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cinema-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cinema-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .client-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cinema-welcome-title {
        font-size: 3rem;
    }
    
    .cinema-info-board h2 {
        font-size: 2rem;
    }
    
    .cinema-title-card h2 {
        font-size: 2.5rem;
    }
    
    .services-marquee h2 {
        font-size: 3rem;
    }
    
    .billboard-header h2 {
        font-size: 2.5rem;
    }
    
    .box-office-header h2 {
        font-size: 3rem;
    }
    
    .film-frame {
        width: 300px;
        height: 300px;
    }
    
    .cinema-frame-main {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }
}

/* Tablets pequeñas y móviles grandes */
@media (max-width: 768px) {
    .cinema-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .cinema-welcome-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .cinema-subtitle {
        font-size: 1.2rem;
    }
    
    .cinema-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .cinema-info-board h2 {
        font-size: 1.8rem;
    }
    
    .cinema-title-card h2 {
        font-size: 2rem;
    }
    
    .services-marquee h2 {
        font-size: 2.5rem;
    }
    
    .billboard-header h2 {
        font-size: 2rem;
    }
    
    .box-office-header h2 {
        font-size: 2.5rem;
    }
    
    .client-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cinema-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cinema-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .film-frame {
        width: 250px;
        height: 250px;
    }
    
    .cinema-frame-main {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
    
    .welcome-content-cinema {
        padding: 40px 20px;
    }
    
    .cinema-about-section {
        padding: 60px 20px;
    }
    
    .cinema-services-section {
        padding: 60px 20px;
    }
    
    .cinema-clients-section {
        padding: 60px 20px;
    }
    
    .cinema-contact-section {
        padding: 60px 20px;
    }
    
    .box-office-window {
        padding: 30px 20px;
    }
    
    .ticket-machine {
        padding: 30px 20px;
    }
    
    .contact-ticket {
        padding: 15px;
        gap: 15px;
    }
    
    .ticket-icon {
        font-size: 1.5rem;
    }
    
    .ticket-details h4 {
        font-size: 1rem;
    }
    
    .ticket-details p {
        font-size: 0.9rem;
    }
}

/* Móviles medianos */
@media (max-width: 600px) {
    .cinema-welcome-title {
        font-size: 2.2rem;
    }
    
    .cinema-subtitle {
        font-size: 1.1rem;
    }
    
    .cinema-info-board h2 {
        font-size: 1.6rem;
    }
    
    .cinema-title-card h2 {
        font-size: 1.8rem;
    }
    
    .services-marquee h2 {
        font-size: 2.2rem;
    }
    
    .billboard-header h2 {
        font-size: 1.8rem;
    }
    
    .box-office-header h2 {
        font-size: 2.2rem;
    }
    
    .film-frame {
        width: 220px;
        height: 220px;
    }
    
    .cinema-frame-main {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .welcome-content-cinema {
        padding: 30px 15px;
    }
    
    .cinema-about-section {
        padding: 50px 15px;
    }
    
    .cinema-services-section {
        padding: 50px 15px;
    }
    
    .cinema-clients-section {
        padding: 50px 15px;
    }
    
    .cinema-contact-section {
        padding: 50px 15px;
    }
    
    .box-office-window {
        padding: 25px 15px;
    }
    
    .ticket-machine {
        padding: 25px 15px;
    }
    
    .contact-ticket {
        padding: 12px;
        gap: 12px;
    }
    
    .ticket-icon {
        font-size: 1.3rem;
    }
    
    .ticket-details h4 {
        font-size: 0.9rem;
    }
    
    .ticket-details p {
        font-size: 0.8rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .cinema-welcome-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .cinema-subtitle {
        font-size: 1rem;
    }
    
    .cinema-description {
        font-size: 0.9rem;
    }
    
    .welcome-content-cinema {
        padding: 20px 10px;
    }
    
    .cinema-overlay {
        padding: 20px 15px;
    }
    
    .cinema-overlay h2 {
        font-size: 1.8rem;
    }
    
    .cinema-overlay p {
        font-size: 0.9rem;
    }
    
    .film-frame {
        width: 200px;
        height: 200px;
    }
    
    .cinema-frame-main {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cinema-about-section {
        padding: 40px 10px;
    }
    
    .cinema-services-section {
        padding: 40px 10px;
    }
    
    .cinema-clients-section {
        padding: 40px 10px;
    }
    
    .cinema-contact-section {
        padding: 40px 10px;
    }
    
    .box-office-window {
        padding: 20px 10px;
    }
    
    .ticket-machine {
        padding: 20px 10px;
    }
    
    .contact-ticket {
        padding: 10px;
        gap: 10px;
    }
    
    .ticket-icon {
        font-size: 1.2rem;
    }
    
    .ticket-details h4 {
        font-size: 0.8rem;
    }
    
    .ticket-details p {
        font-size: 0.7rem;
    }
    
    .machine-header h3 {
        font-size: 1.5rem;
    }
    
    .form-slot label {
        font-size: 0.8rem;
    }
    
    .form-slot input,
    .form-slot select,
    .form-slot textarea {
        font-size: 0.9rem;
        padding: 10px;
    }
    
    .ticket-submit {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
    .cinema-welcome-title {
        font-size: 1.8rem;
    }
    
    .cinema-subtitle {
        font-size: 0.9rem;
    }
    
    .cinema-description {
        font-size: 0.8rem;
    }
    
    .film-frame {
        width: 180px;
        height: 180px;
    }
    
    .cinema-frame-main {
        left: 5px;
        right: 5px;
        bottom: 5px;
    }
    
    .welcome-content-cinema {
        padding: 15px 5px;
    }
    
    .cinema-about-section {
        padding: 30px 5px;
    }
    
    .cinema-services-section {
        padding: 30px 5px;
    }
    
    .cinema-clients-section {
        padding: 30px 5px;
    }
    
    .cinema-contact-section {
        padding: 30px 5px;
    }
    
    .box-office-window {
        padding: 15px 5px;
    }
    
    .ticket-machine {
        padding: 15px 5px;
    }
    
    .contact-ticket {
        padding: 8px;
        gap: 8px;
    }
    
    .ticket-icon {
        font-size: 1rem;
    }
    
    .ticket-details h4 {
        font-size: 0.7rem;
    }
    
    .ticket-details p {
        font-size: 0.6rem;
    }
    
    .machine-header h3 {
        font-size: 1.3rem;
    }
    
    .form-slot label {
        font-size: 0.7rem;
    }
    
    .form-slot input,
    .form-slot select,
    .form-slot textarea {
        font-size: 0.8rem;
        padding: 8px;
    }
    
    .ticket-submit {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

/* 🎯 MEJORAS PARA EXPERIENCIA TÁCTIL */
@media (hover: none) and (pointer: coarse) {
    /* Aumentar tamaño de elementos táctiles */
    .carousel-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .indicator {
        min-width: 20px;
        min-height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-ticket {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    .ticket-submit {
        min-height: 44px;
    }
    
    .form-slot input,
    .form-slot select,
    .form-slot textarea {
        min-height: 44px;
    }
    
    /* Mejorar espaciado para dedos */
    .carousel-controls {
        gap: 15px;
    }
    
    .carousel-indicators {
        gap: 12px;
    }
    
    /* Desactivar hover en dispositivos táctiles */
    .carousel-btn:hover,
    .indicator:hover,
    .nav-ticket:hover,
    .ticket-submit:hover,
    .service-poster:hover,
    .client-poster:hover {
        transform: none;
        box-shadow: none;
    }
}

/* 🎨 ORIENTACIÓN LANDSCAPE EN MÓVILES */
@media (max-width: 768px) and (orientation: landscape) {
    .cinema-welcome-title {
        font-size: 2rem;
    }
    
    .cinema-subtitle {
        font-size: 1rem;
    }
    
    .welcome-content-cinema {
        padding: 20px;
        min-height: 60vh;
    }
    
    .carousel-image-container {
        height: 250px;
    }
    
    .cinema-about-section,
    .cinema-services-section,
    .cinema-clients-section,
    .cinema-contact-section {
        padding: 40px 20px;
    }
    
    .box-office-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* 🖥️ PANTALLAS GRANDES */
@media (min-width: 1400px) {
    .cinema-welcome-title {
        font-size: 5rem;
    }
    
    .cinema-subtitle {
        font-size: 1.8rem;
    }
    
    .cinema-description {
        font-size: 1.3rem;
    }
    
    .carousel-image-container {
        height: 600px;
    }
    
    .carousel-info h2 {
        font-size: 3rem;
    }
    
    .carousel-info p {
        font-size: 1.4rem;
    }
    
    .box-office-header h2 {
        font-size: 4rem;
    }
    
    .services-marquee h2 {
        font-size: 4rem;
    }
    
    .billboard-header h2 {
        font-size: 3.5rem;
    }
}

/* 🖼️ CARRUSEL SIMPLE Y FUNCIONAL */
.simple-carousel {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.carousel-container {
    max-width: 900px;
    width: 100%;
    background: rgba(0,0,0,0.8);
    border-radius: 20px;
    padding: 30px;
    border: 3px solid var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.carousel-image-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid #333;
}

#carouselImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#carouselImage:hover {
    transform: scale(1.05);
}

.carousel-info {
    text-align: center;
    margin-bottom: 30px;
}

.carousel-info h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.carousel-info p {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.carousel-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--black);
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.carousel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.5);
}

.carousel-btn:active {
    transform: translateY(-1px);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.indicator {
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.indicator:hover {
    color: var(--gold);
    transform: scale(1.2);
}

.indicator.active {
    color: var(--gold);
    transform: scale(1.3);
}

/* 📱 RESPONSIVE DEL CARRUSEL MEJORADO */

/* Tablets */
@media (max-width: 1024px) {
    .carousel-container {
        padding: 30px;
    }
    
    .carousel-image-container {
        height: 400px;
    }
    
    .carousel-info h2 {
        font-size: 2rem;
    }
    
    .carousel-info p {
        font-size: 1.1rem;
    }
    
    .carousel-controls {
        gap: 15px;
    }
    
    .carousel-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Tablets pequeñas y móviles grandes */
@media (max-width: 768px) {
    .carousel-container {
        padding: 20px;
    }
    
    .carousel-image-container {
        height: 300px;
    }
    
    .carousel-info h2 {
        font-size: 1.5rem;
    }
    
    .carousel-info p {
        font-size: 1rem;
    }
    
    .carousel-controls {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .carousel-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .carousel-indicators {
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
        font-size: 0.8rem;
    }
}

/* Móviles medianos */
@media (max-width: 600px) {
    .carousel-container {
        padding: 15px;
    }
    
    .carousel-image-container {
        height: 250px;
    }
    
    .carousel-info h2 {
        font-size: 1.3rem;
    }
    
    .carousel-info p {
        font-size: 0.9rem;
    }
    
    .carousel-controls {
        gap: 8px;
    }
    
    .carousel-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 100px;
    }
    
    .carousel-indicators {
        gap: 6px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
        font-size: 0.7rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .carousel-container {
        padding: 10px;
    }
    
    .carousel-image-container {
        height: 200px;
    }
    
    .carousel-info h2 {
        font-size: 1.1rem;
    }
    
    .carousel-info p {
        font-size: 0.8rem;
    }
    
    .carousel-controls {
        gap: 5px;
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
        min-width: 80px;
        width: 100%;
        max-width: 150px;
    }
    
    .carousel-indicators {
        gap: 4px;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
        font-size: 0.6rem;
    }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
    .carousel-container {
        padding: 5px;
    }
    
    .carousel-image-container {
        height: 180px;
    }
    
    .carousel-info h2 {
        font-size: 1rem;
    }
    
    .carousel-info p {
        font-size: 0.7rem;
    }
    
    .carousel-controls {
        gap: 3px;
    }
    
    .carousel-btn {
        padding: 4px 8px;
        font-size: 0.6rem;
        min-width: 70px;
    }
    
    .carousel-indicators {
        gap: 3px;
    }
    
    .indicator {
        width: 5px;
        height: 5px;
        font-size: 0.5rem;
    }
}

/* 🎬 PANTALLA DE CINE CON VIDEO 🍿 */
.cinema-screen-section {
    position: relative;
    width: 100%;
    min-height: 130vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 30px;
}

.cinema-theater {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 10px;
    margin-top: 300px;
}

/* Pantalla de Cine */
.cinema-screen {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 20px auto;
    background: #000;
    border-radius: 20px;
    box-shadow: 
        0 0 80px rgba(255, 215, 0, 0.4),
        0 0 150px rgba(255, 215, 0, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    z-index: 10;
}

/* Marco de la Pantalla */
.screen-frame {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a, #2a2a2a);
    border-radius: 15px;
}

/* Luces del Marco */
.screen-lights {
    position: absolute;
    display: flex;
    z-index: 10;
}

.screen-lights.top-screen-lights {
    top: 10px;
    left: 20px;
    right: 20px;
    justify-content: space-between;
}

.screen-lights.bottom-screen-lights {
    bottom: 10px;
    left: 20px;
    right: 20px;
    justify-content: space-between;
}

.screen-lights.left-screen-lights {
    left: 10px;
    top: 20px;
    bottom: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.screen-lights.right-screen-lights {
    right: 10px;
    top: 20px;
    bottom: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.screen-bulb {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gold);
    animation: screen-bulb-flicker 2s infinite;
}

.screen-bulb:nth-child(odd) {
    animation-delay: 0.5s;
}

.screen-bulb:nth-child(even) {
    animation-delay: 1s;
}

@keyframes screen-bulb-flicker {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 10px var(--gold);
    }
    50% { 
        opacity: 0.3; 
        box-shadow: 0 0 5px var(--gold);
    }
}

/* Contenedor del Video */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    min-height: 600px;
}

.cinema-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cinema-video:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

/* Overlay del Video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 120px;
    height: 120px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 215, 0, 1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.play-icon {
    font-size: 3rem;
    color: #000;
    margin-left: 5px;
}

/* Control de Sonido */
.sound-control {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
}

.sound-button {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.sound-button:hover {
    transform: scale(1.1);
    background: rgba(255, 215, 0, 0.9);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.sound-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.sound-button:hover .sound-icon {
    color: #000;
}

/* Contenedor de Asientos */
.cinema-seats-container {
    position: relative;
    width: 100vw;
    height: 80vh;
    margin-top: -200px;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    z-index: 1;
}

.cinema-seats-image {
    width: 120%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 0 0 20px 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    margin-left: -10%;
}

.cinema-seats-image:hover {
    transform: scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.3);
}

/* MODAL PARA CLIENTES */
.client-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-modal.modal-show {
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: 10% auto;
    padding: 0;
    border: 3px solid var(--gold);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.1);
    transform: scale(0.7);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal-show .modal-content {
    transform: scale(1);
}

.close-modal {
    color: var(--gold);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--red);
    text-shadow: 0 0 10px var(--red);
}

.modal-header {
    background: linear-gradient(45deg, var(--gold), #ffed4e);
    padding: 25px;
    text-align: center;
    position: relative;
}

.modal-header img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border: 4px solid #000;
    box-shadow: 
        0 0 20px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3);
}

.modal-header h3 {
    margin: 0;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-body p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

/* Sección de Redes Sociales */
.social-media-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--gold);
}

.social-media-section h4 {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 15px 0;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 2px solid var(--gold);
    border-radius: 25px;
    padding: 10px 20px;
    color: var(--white);
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    border-color: var(--white);
}

.facebook-btn:hover {
    background: linear-gradient(135deg, #4267B2, #365899);
}

.youtube-btn:hover {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

/* Sección de Atención Telefónica */
.phone-attention-section {
    background: #444444;
    padding: 30px;
    text-align: center;
    margin: 30px auto;
    max-width: 600px;
    border-radius: 10px;
}

.phone-attention-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    font-weight: normal;
}

.phone-number {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    margin: 15px 0 25px 0;
}

.simple-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #666;
}

.simple-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #666;
}

.simple-social-icon:hover {
    transform: scale(1.1);
    border-color: var(--white);
}

.facebook-icon {
    background: #4267B2;
}

.twitter-icon {
    background: #000000;
}

.instagram-icon {
    background: #E4405F;
}

.youtube-icon {
    background: #FF0000;
}

/* Sección Final de Atención Telefónica */
.final-phone-section {
    background: #444444;
    padding: 10px 20px 40px 20px;
    text-align: center;
    margin-top: -30px;
}

/* Efectos de Luz Ambiental */
.cinema-screen-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cinema-theater {
        padding: 20px 10px;
    }
    
    .cinema-screen {
        margin-bottom: 40px;
    }
    
    .screen-frame {
        padding: 15px;
    }
    
    .screen-bulb {
        width: 6px;
        height: 6px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-icon {
        font-size: 1.5rem;
    }
    
    .sound-button {
        width: 50px;
        height: 50px;
    }
    
    .sound-icon {
        font-size: 1.2rem;
    }
    
    .cinema-seats-container {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .cinema-theater {
        padding: 15px 5px;
    }
    
    .cinema-screen {
        margin-bottom: 30px;
    }
    
    .screen-frame {
        padding: 10px;
    }
    
    .screen-bulb {
        width: 4px;
        height: 4px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-icon {
        font-size: 1.2rem;
    }
    
    .sound-button {
        width: 40px;
        height: 40px;
    }
    
    .sound-icon {
        font-size: 1rem;
    }
    
    .cinema-seats-container {
        height: 50vh;
    }
}

/* FORZAR VISIBILIDAD DEL TEXTO DE CONTACTO */
.contact-tickets .contact-ticket .ticket-details p,
.contact-tickets .contact-ticket .ticket-details h4,
.contact-tickets .contact-ticket .ticket-icon {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: inherit !important;
    background: transparent !important;
    position: static !important;
    transform: none !important;
    clip: auto !important;
    overflow: visible !important;
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-shadow: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
    text-align: inherit !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
    white-space: normal !important;
    direction: ltr !important;
    unicode-bidi: normal !important;
    vertical-align: baseline !important;
    list-style: none !important;
    quotes: none !important;
    content: none !important;
    counter-increment: none !important;
    counter-reset: none !important;
    cursor: default !important;
    pointer-events: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    -webkit-touch-callout: default !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-perspective: none !important;
    perspective: none !important;
    -webkit-transform-style: flat !important;
    transform-style: flat !important;
    -webkit-transform-origin: 50% 50% !important;
    transform-origin: 50% 50% !important;
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-filter: none !important;
    filter: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    -webkit-mask: none !important;
    mask: none !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
    -webkit-shape-outside: none !important;
    shape-outside: none !important;
    -webkit-shape-margin: 0 !important;
    shape-margin: 0 !important;
    -webkit-shape-image-threshold: 0 !important;
    shape-image-threshold: 0 !important;
    -webkit-shape-rendering: auto !important;
    shape-rendering: auto !important;
    -webkit-text-orientation: mixed !important;
    text-orientation: mixed !important;
    -webkit-text-combine-upright: none !important;
    text-combine-upright: none !important;
    -webkit-text-emphasis: none !important;
    text-emphasis: none !important;
    -webkit-text-emphasis-color: currentColor !important;
    text-emphasis-color: currentColor !important;
    -webkit-text-emphasis-style: none !important;
    text-emphasis-style: none !important;
    -webkit-text-emphasis-position: over right !important;
    text-emphasis-position: over right !important;
    -webkit-text-underline-position: auto !important;
    text-underline-position: auto !important;
    -webkit-text-underline-offset: auto !important;
    text-underline-offset: auto !important;
    -webkit-text-decoration-skip: objects !important;
    text-decoration-skip: objects !important;
    -webkit-text-decoration-skip-ink: auto !important;
    text-decoration-skip-ink: auto !important;
    -webkit-text-decoration-color: currentColor !important;
    text-decoration-color: currentColor !important;
    -webkit-text-decoration-line: none !important;
    text-decoration-line: none !important;
    -webkit-text-decoration-style: solid !important;
    text-decoration-style: solid !important;
    -webkit-text-decoration-thickness: auto !important;
    text-decoration-thickness: auto !important;
    -webkit-text-indent: 0 !important;
    text-indent: 0 !important;
    -webkit-text-justify: auto !important;
    text-justify: auto !important;
    -webkit-text-overflow: clip !important;
    text-overflow: clip !important;
    -webkit-text-rendering: auto !important;
    text-rendering: auto !important;
    -webkit-text-shadow: none !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    text-stroke: 0 !important;
    -webkit-text-stroke-color: currentColor !important;
    text-stroke-color: currentColor !important;
    -webkit-text-stroke-width: 0 !important;
    text-stroke-width: 0 !important;
    -webkit-text-transform: none !important;
    text-transform: none !important;
    -webkit-text-wrap: wrap !important;
    text-wrap: wrap !important;
    -webkit-word-break: normal !important;
    word-break: normal !important;
    -webkit-word-spacing: normal !important;
    word-spacing: normal !important;
    -webkit-word-wrap: normal !important;
    word-wrap: normal !important;
    -webkit-writing-mode: horizontal-tb !important;
    writing-mode: horizontal-tb !important;
    -webkit-zoom: 1 !important;
    zoom: 1 !important;
}

/* Asegurar que toda la información de contacto sea visible */
.contact-ticket {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    background: #000000 !important;
    border: 2px solid var(--gold) !important;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3) !important;
    position: relative !important;
    z-index: 10 !important;
}

.contact-ticket .ticket-details {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative !important;
    z-index: 11 !important;
}

.contact-ticket .ticket-details h4 {
    color: var(--gold) !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative !important;
    z-index: 12 !important;
}

.contact-ticket .ticket-details p {
    color: var(--white) !important;
    font-weight: 500 !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative !important;
    z-index: 12 !important;
}

/* Forzar visibilidad de todos los elementos de contacto */
.contact-tickets {
    display: grid !important;
    gap: 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 9 !important;
}

.contact-tickets .contact-ticket {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    background: #000000 !important;
    border: 2px solid var(--gold) !important;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3) !important;
    position: relative !important;
    z-index: 10 !important;
}

.contact-tickets .contact-ticket .ticket-icon {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative !important;
    z-index: 12 !important;
}

.contact-tickets .contact-ticket .ticket-details h4,
.contact-tickets .contact-ticket .ticket-details p {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative !important;
    z-index: 12 !important;
    color: inherit !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    text-align: left !important;
    font-family: 'Poppins', sans-serif !important;
}
