/* Ticket Premium - Estilo Concierto */
#section-promo-ticket {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Contenedor de imagen ajustado */
.image-container {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 0 auto;
}

/* Imagen flotante */
.floating-image {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(249, 203, 40, 0.2));
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    transition: all 0.3s ease;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Efectos de luces policiales */
@keyframes policeLightRed {

    0%,
    100% {
        opacity: 0.9;
    }

    25%,
    75% {
        opacity: 0.1;
    }
}

@keyframes policeLightBlue {

    25%,
    75% {
        opacity: 0.9;
    }

    0%,
    50%,
    100% {
        opacity: 0.1;
    }
}

.police-light {
    position: absolute;
    width: 30px;
    height: 10px;
    border-radius: 5px;
    filter: blur(1px);
    z-index: 10;
}

.police-light.red {
    background: #ff2d2d;
    box-shadow: 0 0 15px #ff2d2d;
    animation: policeLightRed 1.5s infinite;
    top: 10px;
    left: 20px;
}

.police-light.blue {
    background: #2d8cff;
    box-shadow: 0 0 15px #2d8cff;
    animation: policeLightBlue 1.5s infinite;
    top: 10px;
    right: 20px;
}

/* Efecto de vibración/zumbido SOLO al hacer hover (reemplaza cualquier animación previa del logo) */
.rotating-logo {
    transform-origin: center;
    display: inline-block;
    transition: transform 0.1s ease;
    /* Suaviza la transición */
}

.rotating-logo:hover {
    animation: vibrate 0.1s linear infinite alternate;
}

@keyframes vibrate {
    0% {
        transform: translateX(-2px) rotate(-3deg);
    }

    20% {
        transform: translateX(3px) rotate(4deg);
    }

    40% {
        transform: translateX(-3px) rotate(-4deg);
    }

    60% {
        transform: translateX(4px) rotate(3deg);
    }

    80% {
        transform: translateX(-4px) rotate(-2deg);
    }

    100% {
        transform: translateX(2px) rotate(3deg);
    }
}

/* Brillo dinámico */
@keyframes dynamicGlow {
    0% {
        box-shadow: 0 0 15px rgba(249, 203, 40, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(249, 203, 40, 0.8);
    }

    100% {
        box-shadow: 0 0 15px rgba(249, 203, 40, 0.5);
    }
}

.ticket-concierto {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: dynamicGlow 3s ease infinite;
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

/* Resto de estilos del ticket (se mantienen igual) */
.ticket-header-premium {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.ticket-header-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff4d4d, #f9cb28, #ff4d4d);
}

.ticket-title-premium {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(90deg, #ff4d4d, #f9cb28);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.ticket-body-premium {
    padding: 30px;
    position: relative;
}

.promo-code-premium {
    font-size: 52px;
    font-weight: 900;
    font-family: 'Courier New', monospace;
    color: #fff;
    text-align: center;
    margin: 30px 0;
    letter-spacing: 8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    display: inline-block;
    width: 100%;
}

.promo-code-premium::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #ff4d4d, #f9cb28);
    border-radius: 3px;
}

.ticket-details-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.ticket-feature {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-value {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
    color: #f9cb28;
}

.feature-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-footer-premium {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    font-size: 12px;
    letter-spacing: 1px;
}

.ticket-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(255, 200, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ticket-perforation-premium {
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 15px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="15" viewBox="0 0 20 15"><circle cx="5" cy="7.5" r="2" fill="%23f9cb28"/><circle cx="15" cy="7.5" r="2" fill="%23f9cb28"/></svg>') repeat-x;
}

.btn-premium {
    display: block;
    background: linear-gradient(90deg, #ff4d4d, #f9cb28);
    color: #1a1a2e;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    margin: 20px auto 0;
    width: 80%;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(249, 203, 40, 0.3);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 203, 40, 0.4);
}

/* Efectos de borde luminoso */
@keyframes borderGlow {
    0% {
        box-shadow: 0 0 5px rgba(255, 45, 45, 0.5), 0 0 10px rgba(45, 140, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 45, 45, 0.8), 0 0 20px rgba(45, 140, 255, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(255, 45, 45, 0.5), 0 0 10px rgba(45, 140, 255, 0.5);
    }
}

.ticket-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    animation: borderGlow 2s infinite alternate;
    pointer-events: none;
    z-index: 1;
}

/* Estilos responsivos */
@media (max-width: 991.98px) {
    #section-promo-ticket {
        padding: 60px 0;
    }

    #section-promo-ticket .row {
        flex-direction: column;
    }

    .image-container {
        max-width: 300px;
        margin-bottom: 30px;
    }

    .floating-image {
        max-height: 200px;
    }
}

@media (max-width: 767.98px) {
    #section-promo-ticket {
        padding: 40px 0;
    }

    .promo-code-premium {
        font-size: 42px;
    }

    .feature-value {
        font-size: 28px;
    }

    .image-container img {
        max-height: 180px;
    }
}

@media (max-width: 575.98px) {
    .ticket-details-premium {
        grid-template-columns: 1fr;
    }

    .promo-code-premium {
        font-size: 36px;
    }

    .ticket-title-premium {
        font-size: 24px;
    }

    .image-container img {
        max-height: 160px;
    }

    .btn-premium {
        width: 90%;
    }
}

/* Efectos festivos */
.festive-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.confetti {
    position: absolute;
    width: 15px;
    height: 15px;
    opacity: 0;
    animation: confettiFall 5s linear infinite;
}

/* 10 confetis con diferentes colores y posiciones */
.confetti:nth-child(1) {
    background-color: #f9cb28;
    left: 10%;
    animation-delay: 0s;
}

.confetti:nth-child(2) {
    background-color: #ff2d2d;
    left: 20%;
    animation-delay: 0.5s;
}

.confetti:nth-child(3) {
    background-color: #2d8cff;
    left: 30%;
    animation-delay: 1s;
}

.confetti:nth-child(4) {
    background-color: #4cff2d;
    left: 40%;
    animation-delay: 1.5s;
}

.confetti:nth-child(5) {
    background-color: #f92dff;
    left: 50%;
    animation-delay: 2s;
}

.confetti:nth-child(6) {
    background-color: #00ffff;
    left: 60%;
    animation-delay: 2.5s;
}

.confetti:nth-child(7) {
    background-color: #ffffff;
    left: 70%;
    animation-delay: 0.2s;
}

.confetti:nth-child(8) {
    background-color: #ff8c00;
    left: 80%;
    animation-delay: 1.2s;
}

.confetti:nth-child(9) {
    background-color: #a020f0;
    left: 90%;
    animation-delay: 0.8s;
}

.confetti:nth-child(10) {
    background-color: #00ff00;
    left: 5%;
    animation-delay: 3s;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(150vh) rotate(360deg);
        opacity: 1;
    }
}

/* Contenedor de serpentinas (ajustado para solo esta sección) */
.festive-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Ocupa solo el alto de la sección */
    z-index: 8;
    /* Suficiente para estar sobre el ticket pero bajo el menú (que suele tener z-index 1000+) */
    pointer-events: none;
    overflow: hidden;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(150vh) rotate(360deg);
        opacity: 1;
    }
}

/* Asegurar que el contenido se mantenga sobre el fondo */
#section-promo-ticket .container {
    position: relative;
    z-index: 2;
}


/* Efecto neón celeste con parpadeo y borde fucsia */
.promo-code-premium.neon-flicker {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-shadow:
        0 0 5px #00b4ff,
        0 0 10px #00b4ff,
        0 0 20px #00b4ff,
        0 0 40px #00b4ff;
    animation: flicker 3s infinite alternate;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin: 10px 0;
    position: relative;
}

.promo-code-premium.neon-border {
    border: 2px solid #ff00ff;
    box-shadow:
        0 0 5px #ff00ff,
        0 0 10px #ff00ff,
        0 0 20px #ff00ff,
        inset 0 0 5px #ff00ff;
}

@keyframes flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        text-shadow:
            0 0 5px #00b4ff,
            0 0 10px #00b4ff,
            0 0 20px #00b4ff,
            0 0 40px #00b4ff;
        box-shadow:
            0 0 5px #ff00ff,
            0 0 10px #ff00ff,
            0 0 20px #ff00ff,
            inset 0 0 5px #ff00ff,
            0 0 5px rgba(0, 180, 255, 0.5),
            inset 0 0 5px rgba(0, 180, 255, 0.3);
    }

    20%,
    24%,
    55% {
        text-shadow: none;
        box-shadow: none;
        border-color: transparent;
    }
}

/* ================================================== */
/* ADENDUM - TEMA CLARO PARA SECCIÓN TICKET PREMIUM */
/* Versión mejorada con contenedor Cloud Hosting claro */
/* ================================================== */

/* Fondo claro para la sección */
#section-promo-ticket.light-theme {
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

/* Contenedor principal del ticket - Versión clara moderna */
#section-promo-ticket.light-theme .ticket-concierto {
    background: #e6f2ff;
    border-radius: 12px;
    box-shadow: 0 200px 450px rgba(0, 102, 204, 0.12);
    border: none;
    color: #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Efecto de borde luminoso SUPER intenso */
    border: 4px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 0 30px rgba(0, 180, 255, 0.3);
    /* Patrón complejo de billete con múltiples capas */
    background-image:
        /* Fondo base con textura sutil */
        linear-gradient(rgba(255, 255, 255, 0.8) 0%, rgba(230, 242, 255, 0.8) 100%),
        /* Líneas diagonales finas */
        repeating-linear-gradient(45deg,
            rgba(2, 26, 46, 0.493),
            rgba(0, 118, 215, 0.068) 1px,
            transparent 1px,
            transparent 10px),
        /* Líneas diagonales en dirección opuesta */
        repeating-linear-gradient(-45deg,
            rgba(0, 90, 190, 0.04),
            rgba(0, 90, 190, 0.04) 1px,
            transparent 1px,
            transparent 12px),
        /* Puntos microscópicos */
        radial-gradient(circle at 1px 1px,
            rgba(0, 100, 200, 0.03) 1px,
            transparent 1px),
        /* Ondas sutiles */
        radial-gradient(circle at 50% 50%,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 30%,
            transparent 60%);
    background-size:
        100% 100%,
        20px 20px,
        20px 20px,
        10px 10px,
        100% 100%;
    background-blend-mode: overlay, normal, normal, normal, overlay;
}

/* Generación dinámica de elementos de seguridad (simulado con CSS) */
#section-promo-ticket.light-theme .ticket-concierto::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Hilo de seguridad */
        repeating-linear-gradient(to right,
            transparent,
            transparent 3px,
            rgba(0, 180, 255, 0.3) 3px,
            rgba(0, 180, 255, 0.3) 6px),
        /* Microtexto simulado */
        repeating-linear-gradient(to bottom,
            transparent,
            transparent 19px,
            rgba(0, 100, 200, 0.05) 19px,
            rgba(0, 100, 200, 0.05) 20px);
    background-size: 100% 2px, 100% 20px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    mix-blend-mode: overlay;
}

#section-promo-ticket.light-theme .ticket-concierto::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
    background: linear-gradient(135deg,
            rgba(0, 180, 255, 0.8),
            rgba(0, 102, 204, 0.9),
            rgba(0, 180, 255, 0.8));
    border-radius: 16px;
    animation: borderPulse 4s linear infinite;
    filter: blur(10px);
    opacity: 0.8;
}

@keyframes borderPulse {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
        filter: blur(12px) brightness(1.5);
    }

    100% {
        opacity: 0.8;
    }
}

#section-promo-ticket.light-theme .ticket-concierto:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.2),
        0 0 30px rgba(254, 255, 255, 0.8),
        0 0 60px rgba(255, 255, 255, 0.6);
}

#section-promo-ticket.light-theme .ticket-concierto:hover::before {
    opacity: 1;
    filter: blur(12px) brightness(1.5);
    animation: borderPulseFast 2s linear infinite;
}

@keyframes borderPulseFast {
    0% {
        opacity: 0.9;
    }

    50% {
        opacity: 1;
        filter: blur(15px) brightness(2);
    }

    100% {
        opacity: 0.9;
    }
}

/* Encabezado del ticket - Versión clara profesional */
#section-promo-ticket.light-theme .ticket-header-premium {
    background: linear-gradient(135deg, #7fbaf5 0%, #e6f0fa 100%);
    padding: 30px 25px;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
    position: relative;
    overflow: hidden;
}

#section-promo-ticket.light-theme .ticket-header-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b4ff, #0066cc, #00b4ff);
    background-size: 200% 100%;
    animation: gradientFlow 3s ease infinite;
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.9);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

#section-promo-ticket.light-theme .ticket-title-premium {
    font-size: 35px;
    font-weight: 700;
    margin: 15px 0 0;
    background: linear-gradient(90deg, #1d0086, #1900f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding: 0 10px;
    text-shadow: 0 0 7px rgba(1, 19, 27, 0.5);
}

/* Cuerpo del ticket - Versión clara limpia */
#section-promo-ticket.light-theme .ticket-body-premium {
    padding: 30px;
    background: rgba(255, 255, 255, 0.85);
    position: relative;
    backdrop-filter: blur(1px);
    z-index: 1;
}

/* Código promocional - Versión clara destacada */
#section-promo-ticket.light-theme .promo-code-premium {
    font-size: 42px;
    font-weight: 800;
    color: #0066cc;
    text-align: center;
    margin: 25px 0;
    letter-spacing: 5px;
    padding: 15px 30px;
    background: rgba(0, 180, 255, 0.08);
    border-radius: 8px;
    border: 2px dashed rgba(0, 102, 204, 0.3);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

#section-promo-ticket.light-theme .promo-code-premium::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(0, 180, 255, 0) 45%,
            rgba(0, 180, 255, 0.25) 50%,
            rgba(0, 180, 255, 0) 55%);
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* Efecto neón dorado exclusivo para tema claro */
#section-promo-ticket.light-theme .promo-code-premium.neon-flicker {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-shadow:
        0 0 5px #0077ff,
        0 0 10px #0077ff,
        0 0 20px #0077ff,
        0 0 40px #0077ff;
    animation: flicker-gold 3s infinite alternate;
    padding: 15px 15px;
    border-radius: 25px;
    display: inline-block;
    margin: 10px 0;
    position: relative;
}

#section-promo-ticket.light-theme .promo-code-premium.neon-border {
    border: 2px solid #f9cb28;
    box-shadow:
        0 0 5px #f9cb28,
        0 0 10px #f9cb28,
        0 0 20px #f9cb28,
        inset 0 0 5px #f9cb28;
}

@keyframes flicker-gold {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        text-shadow:
            0 0 5px #00b4ff,
            0 0 10px #00b4ff,
            0 0 20px #00b4ff,
            0 0 40px #00b4ff;
        box-shadow:
            0 0 5px #f9cb28,
            0 0 10px #f9cb28,
            0 0 20px #f9cb28,
            inset 0 0 5px #f9cb28,
            0 0 5px rgba(0, 180, 255, 0.5),
            inset 0 0 5px rgba(0, 180, 255, 0.3);
    }

    20%,
    24%,
    55% {
        text-shadow: none;
        box-shadow: none;
        border-color: transparent;
    }
}

/* Casillas de características - Versión clara con profundidad */
#section-promo-ticket.light-theme .ticket-details-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

#section-promo-ticket.light-theme .ticket-feature {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 8px rgba(0, 102, 204, 0.445);
    border: 3px solid rgba(0, 102, 204, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

#section-promo-ticket.light-theme .ticket-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.15);
}

#section-promo-ticket.light-theme .ticket-feature::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00b4ff, #0066cc);
    box-shadow: 0 0 15px rgba(0, 180, 255, 0.7);
}

#section-promo-ticket.light-theme .feature-value {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin: 10px 0;
    position: relative;
}

#section-promo-ticket.light-theme .feature-label {
    font-size: 14px;
    color: #666;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Pie del ticket - Versión clara sutil */
#section-promo-ticket.light-theme .ticket-footer-premium {
    background: linear-gradient(135deg, #f8fafc 0%, #e6f0fa 100%);
    padding: 15px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #0066cc;
    text-align: center;
    border-top: 1px solid rgba(0, 102, 204, 0.1);
    font-weight: 600;
}

/* ================================================== */
/* BOTÓN OBTENER PASE VIP - ESTILO DORADO (DIMENSIONES ORIGINALES) */
/* ================================================== */

#section-promo-ticket.light-theme .btn-premium {
    /* Dimensiones originales mantenidas */
    display: block;
    margin: 20px auto 0;
    width: 80%;
    padding: 15px;

    /* Estilo dorado premium con textura mejorada */
    background: linear-gradient(135deg,
            #f9d423 0%,
            #e2a60b 50%,
            #f9d423 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 5px 15px rgba(233, 176, 7, 0.3);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);

    /* Efectos y transiciones */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;

    /* Animación de pulso dorado */
    animation: goldPulse 3s infinite;
}

/* Efecto hover manteniendo dimensiones */
#section-promo-ticket.light-theme .btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 176, 7, 0.4);
    background: linear-gradient(135deg,
            #f9d423 0%,
            #e2a60b 60%,
            #f9d423 100%);
}

/* Efecto de brillo dorado deslizante */
#section-promo-ticket.light-theme .btn-premium::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: 0.5s;
}

#section-promo-ticket.light-theme .btn-premium:hover::before {
    left: 100%;
}

/* Animación de pulso dorado */
@keyframes goldPulse {

    0%,
    100% {
        box-shadow: 0 5px 15px rgba(233, 176, 7, 0.3);
    }

    50% {
        box-shadow: 0 5px 20px rgba(233, 176, 7, 0.6);
    }
}

/* Efecto de borde dorado al hover (manteniendo dimensiones) */
#section-promo-ticket.light-theme .btn-premium::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    background: linear-gradient(135deg,
            rgba(249, 212, 35, 0.8),
            rgba(226, 166, 11, 0.8),
            rgba(249, 212, 35, 0.8));
    z-index: -1;
    opacity: 0;
    transition: 0.3s;
}

#section-promo-ticket.light-theme .btn-premium:hover::after {
    opacity: 1;
}

/* ================================================== */
/* MEDIA QUERIES PARA RESPONSIVE DESIGN */
/* ================================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    #section-promo-ticket.light-theme .ticket-title-premium {
        font-size: 28px;
    }
    
    #section-promo-ticket.light-theme .promo-code-premium {
        font-size: 32px;
        padding: 12px 20px;
        letter-spacing: 3px;
    }
    
    #section-promo-ticket.light-theme .feature-value {
        font-size: 26px;
    }
    
    #section-promo-ticket.light-theme .ticket-body-premium,
    #section-promo-ticket.light-theme .ticket-header-premium {
        padding: 20px;
    }
    
    #section-promo-ticket.light-theme .btn-premium {
        font-size: 16px;
        padding: 12px;
    }
}

/* Móvil (480px - 767px) */
@media (max-width: 767px) {
    #section-promo-ticket.light-theme .ticket-title-premium {
        font-size: 24px;
        margin: 10px 0 0;
    }
    
    #section-promo-ticket.light-theme .promo-code-premium {
        font-size: 24px;
        padding: 10px 15px;
        letter-spacing: 2px;
        margin: 15px 0;
    }
    
    #section-promo-ticket.light-theme .ticket-details-premium {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 20px 0;
    }
    
    #section-promo-ticket.light-theme .feature-value {
        font-size: 22px;
    }
    
    #section-promo-ticket.light-theme .feature-label {
        font-size: 12px;
    }
    
    #section-promo-ticket.light-theme .ticket-body-premium,
    #section-promo-ticket.light-theme .ticket-header-premium {
        padding: 15px;
    }
    
    #section-promo-ticket.light-theme .ticket-feature {
        padding: 15px;
    }
    
    #section-promo-ticket.light-theme .btn-premium {
        width: 90%;
        font-size: 14px;
        padding: 10px;
    }
}

/* Móvil pequeño (hasta 479px) */
@media (max-width: 479px) {
    #section-promo-ticket.light-theme .ticket-title-premium {
        font-size: 20px;
    }
    
    #section-promo-ticket.light-theme .promo-code-premium {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    #section-promo-ticket.light-theme .feature-value {
        font-size: 20px;
    }
    
    #section-promo-ticket.light-theme .btn-premium {
        width: 95%;
    }
}