/*:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --accent-color: #e74c3c;
    --dark-color: #00f3ff;
    --light-color: #ecf0f1;
    --neon-blue: #00f3ff;
    --neon-yellow: #ffeb3b;
    --neon-pink: #ff00f7;
    --neon-purple: #9d00ff;
}

body {
    background-color: #0a0a1a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0dcaf0;
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 243, 255, 0.05) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(157, 0, 255, 0.05) 0%, transparent 20%);
}*/

/* Estilo futurista para el título ORION */
/*.futuristic-title {
    position: relative;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    padding: 20px 40px;
    perspective: 1000px;
}

.orion-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-blue) 0%, #ffb23b 50%, #ff0052 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
    animation: textGlow 2s ease-in-out infinite alternate;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

.particles {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: radial-gradient(circle at 20% 30%, #dc3545 0%, transparent 3%), radial-gradient(circle at 80% 70%, rgb(0 255 22 / 0%) 0%, transparent 3%), radial-gradient(circle at 40% 60%, rgba(255, 235, 59, 0.8) 0%, transparent 3%), radial-gradient(circle at 60% 40%, rgb(0 76 255 / 80%) 0%, transparent 3%);
    background-size: 200% 200%;
    animation: particleMove 8s linear infinite;
    z-index: 0;
    opacity: 0.7;
}

.futuristic-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-weight: 300;
    letter-spacing: 5px;
    color: rgba(255, 235, 59, 0.8);
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.download-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

    .download-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 3px;
        background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
        border-radius: 3px;
    }

@@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    }

    100% {
        text-shadow: 0 0 20px rgba(0, 243, 255, 0.8), 0 0 30px rgba(255, 235, 59, 0.6);
    }
}

@@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@@keyframes particleMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}*/

/* Estilos para el contenido principal */
/*.container {
    max-width: 1200px;
    margin: 40px auto;
    background-color: rgba(33, 37, 41, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}*/

/* Tarjetas de boletos futuristas */
/*.ticket-card {
    background: linear-gradient(145deg, rgba(44, 62, 80, 0.7) 0%, rgba(20, 30, 48, 0.9) 100%);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

    .ticket-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 243, 255, 0.3);
        border: 1px solid var(--neon-blue);
    }

    .ticket-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    }

.ticket-header {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(0, 0, 20, 0.95) 100%);
    color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .ticket-header h2 {
        font-family: 'Orbitron', sans-serif;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0;
        background: linear-gradient(90deg, white, var(--neon-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.ticket-body {
    padding: 30px;
    position: relative;
}*/

/* Formularios futuristas */
/*.form-group label {
    font-weight: 600;
    color: var(--neon-blue);
    margin-bottom: 8px;
}

.form-control {
    height: 45px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
}

    .form-control:focus {
        border-color: var(--neon-blue);
        box-shadow: 0 0 0 0.2rem rgba(0, 243, 255, 0.25);
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
    }*/

/* Botones futuristas */
/*.btn-primary {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
        color: white;
    }

.btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

    .btn-outline-secondary:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }*/

/* Progreso de pasos futurista */
/*.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

    .progress-steps::before {
        content: "";
        position: absolute;
        top: 15px;
        left: 0;
        right: 0;
        height: 2px;
        background-color: rgba(255, 255, 255, 0.1);
        z-index: 1;
    }

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.step.active .step-number {
    background-color: var(--neon-blue);
    color: var(--dark-color);
}

.step.completed .step-number {
    background-color: var(--secondary-color);
    color: white;
}

.step-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
}

.step.active .step-label {
    color: var(--neon-blue);
}

.step.completed .step-label {
    color: var(--secondary-color);
}*/

/* Secciones */
/*.section {
    display: none;
}

    .section.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }*/

/* Imagen del evento */
/*.event-image-container {
    display: block;
    width: 100%;
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    background-color: transparent;
}

.event-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px;
}*/

/* Contador de descargas futurista */
/*.download-counter {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: bold;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    margin-left: 10px;
}

.download-limit-reached {
    color: var(--accent-color);
    border-color: var(--accent-color);
}*/

/* Alertas futuristas */
/*.alert {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.alert-info {
    background-color: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--neon-blue);
    color: white;
}

.alert-success {
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid var(--secondary-color);
    color: white;
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--neon-yellow);
    color: white;
}

.alert-danger {
    background-color: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--accent-color);
    color: white;
}*/

/* Carrito de compras futurista */
/*.cart-summary {
    background: linear-gradient(145deg, rgba(44, 62, 80, 0.7) 0%, rgba(20, 30, 48, 0.9) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}*/

/* Opciones de boletos */
/*.ticket-option {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    background-color: rgba(44, 62, 80, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

    .ticket-option:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 243, 255, 0.2);
        border-left: 4px solid var(--neon-blue);
    }

    .ticket-option.selected {
        background-color: rgba(0, 243, 255, 0.1);
        border-left: 4px solid var(--neon-blue);
    }*/

/* Control de cantidad */
/*.quantity-control button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
}

    .quantity-control button:hover {
        background-color: var(--neon-blue);
        color: white;
    }

.quantity-display {
    min-width: 40px;
    text-align: center;
    font-weight: bold;
    color: var(--neon-blue);
}*/

/* Modal futurista */
/*.modal-mensaje .modal-header {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    color: #291b4d;
    ;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-mensaje .modal-content {
    background-color: rgba(44, 62, 80, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}*/

/* Loader futurista */
/*.loader {
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--neon-blue);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 20px auto;
}*/

/* Badges */
/*.cortesia-badge {
    background-color: var(--neon-purple);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.discount-badge {
    background-color: var(--neon-pink);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}*/

/* Métodos de pago */
/*.payment-method {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(44, 62, 80, 0.5);
}

    .payment-method:hover {
        border-color: var(--neon-blue);
        box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
    }

    .payment-method.selected {
        border-color: var(--neon-blue);
        background-color: rgba(0, 243, 255, 0.1);
    }

    .payment-method.disabled {
        opacity: 0.6;
        cursor: not-allowed;
        position: relative;
    }

        .payment-method.disabled::after {
            content: "Temporalmente no disponible";
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--danger-color);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
        }

.payment-method-radio {
    margin-right: 10px;
}

.payment-method-icon {
    font-size: 24px;
    margin-right: 10px;
    color: var(--neon-blue);
}

.payment-method-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.payment-method-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}*/

/* Formulario de tarjeta */
/*.card-form {
    margin-top: 20px;
}

.card-element {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.card-errors {
    color: var(--danger-color);
    margin-top: 10px;
    font-size: 14px;
}

.card-row {
    display: flex;
    margin-bottom: 20px;
}

.card-col {
    flex: 1;
    margin-right: 15px;
}

    .card-col:last-child {
        margin-right: 0;
    }*/

/* Animaciones */
/*@@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/

/* Añade esto en tu sección de estilos */

/* Efecto de pulsación para los números de los pasos */
/*.step-number {
    animation: pulse 2s infinite ease-in-out;
}*/

/* Efecto de pulsación para los títulos de los pasos */
/*.ticket-header h2 {
    animation: pulseSoft 3s infinite ease-in-out;
}*/

/* Efecto de pulsación más suave para los títulos */
/*@@keyframes pulseSoft {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    }

    50% {
        transform: scale(1.03);
        text-shadow: 0 0 15px rgba(0, 243, 255, 0.8);
    }
}*/

/* Efecto de pulsación para pasos activos */
/*.step.active .step-number {
    animation: pulseActive 1.5s infinite ease-in-out;
}

@@keyframes pulseActive {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 243, 255, 0);
    }
}*/

/* Efecto de pulsación para pasos completados */
/*.step.completed .step-number {
    animation: pulseCompleted 2s infinite ease-in-out;
}

@@keyframes pulseCompleted {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
    }
}*/

/* Efecto para el título ORION */
/*.orion-text {
    animation: pulseTitle 4s infinite alternate;
}

@@keyframes pulseTitle {
    0% {
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    }

    50% {
        text-shadow: 0 0 20px rgba(0, 243, 255, 0.8), 0 0 30px rgba(255, 235, 59, 0.6);
    }

    100% {
        text-shadow: 0 0 15px rgba(0, 243, 255, 0.7), 0 0 25px rgba(255, 0, 247, 0.5);
    }
}*/

/* Footer futurista */
/*.futuristic-footer {
    background-color: #0a0a1a;
    padding: 150px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #00f3ff, #ff00f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.brands-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.pulse-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    text-shadow: 0 0 10px currentColor;
    animation: pulse 2s infinite;
}

.social-icon {
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        transform: translateY(-5px) scale(1.2);
        text-shadow: 0 0 20px currentColor;
    }

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: 0.3;
}*/

/* Responsive */
/*@@media (max-width: 768px) {
    .futuristic-title {
        font-size: 3rem;
        padding: 15px 20px;
    }

    .download-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 15px;
        margin: 20px auto;
    }

    .progress-steps {
        flex-wrap: wrap;
    }

    .step {
        flex: 1 0 25%;
        margin-bottom: 15px;
    }

    .step-label {
        font-size: 12px;
    }

    .ticket-body {
        padding: 20px;
    }

    .cart-summary {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        margin: 0;
        border-radius: 15px 15px 0 0;
        box-shadow: 0 -5px 15px rgba(0, 243, 255, 0.2);
        border: 1px solid var(--neon-blue);
        max-height: 50vh;
        overflow-y: auto;
        background: rgba(20, 30, 48, 0.95);
        z-index: 1000;
    }

        .cart-summary::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
        }
}

@@media (max-width: 576px) {
    .step {
        flex: 1 0 50%;
    }
}*/

/* Estilos para los nuevos botones */
/*.btn-outline-info {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    transition: all 0.3s ease;
}

    .btn-outline-info:hover {
        color: var(--dark-color);
        background-color: var(--neon-blue);
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
        transform: translateY(-2px);
    }

.btn-outline-warning {
    color: var(--neon-yellow);
    border-color: var(--neon-yellow);
    transition: all 0.3s ease;
}

    .btn-outline-warning:hover {
        color: var(--dark-color);
        background-color: var(--neon-yellow);
        box-shadow: 0 0 15px rgba(255, 235, 59, 0.5);
        transform: translateY(-2px);
    }*/

/* Asegurar que los botones no se amontonen en móviles */
/*@@media (max-width: 768px) {
    .text-center .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

        .text-center .btn + .btn {
            margin-left: 0;
        }
}*/

/* Añade estos estilos en tu sección CSS */

/* Gradiente animado para los números de los pasos */
/*.step-number {
    background: linear-gradient(135deg, #00f3ff, #9d00ff);
    background-size: 200% 200%;
    animation: gradientPulse 4s ease infinite, pulse 2s infinite ease-in-out;
    color: #0a0a1a !important;
    font-weight: bold;
    border: 2px solid rgba(255,255,255,0.3);
}*/

/* Gradiente animado para pasos activos */
/*.step.active .step-number {
    background: linear-gradient(135deg, #00f3ff, #ff00f7);
    animation: gradientPulseActive 3s ease infinite, pulseActive 1.5s infinite ease-in-out;
}*/

/* Gradiente animado para pasos completados */
/*.step.completed .step-number {
    background: linear-gradient(135deg, #2ecc71, #00f3ff);
    animation: gradientPulseCompleted 5s ease infinite, pulseCompleted 2s infinite ease-in-out;
}*/

/* Animaciones de gradiente */
/*@@keyframes gradientPulse {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@@keyframes gradientPulseActive {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 25px rgba(255, 0, 247, 0.7);
    }

    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
    }
}

@@keyframes gradientPulseCompleted {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 20px rgba(0, 243, 255, 0.7);
    }

    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
    }
}*/

/* Gradiente animado para los títulos de sección */
/*.ticket-header {
    background: linear-gradient(90deg, rgba(0,0,0,0.3), rgba(0,243,255,0.2), rgba(0,0,0,0.3));
    background-size: 200% 200%;
    animation: headerGradient 6s ease infinite;
    position: relative;
    overflow: hidden;
}

    .ticket-header h2 {
        position: relative;
        z-index: 2;
        animation: pulseSoft 3s infinite ease-in-out;
    }

    .ticket-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(157, 0, 255, 0.3), transparent);
        animation: shine 3s infinite;
    }

@@keyframes headerGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}*/

/* Refuerzo para el título principal */
/*.futuristic-title {
    animation: titleGlow 6s infinite alternate;
}

@@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.7);
    }

    25% {
        text-shadow: 0 0 20px rgba(0, 243, 255, 0.9), 0 0 30px rgba(157, 0, 255, 0.5);
    }

    50% {
        text-shadow: 0 0 25px rgba(255, 0, 247, 0.8), 0 0 15px rgba(0, 243, 255, 0.6);
    }

    75% {
        text-shadow: 0 0 20px rgba(255, 235, 59, 0.7), 0 0 25px rgba(0, 243, 255, 0.5);
    }

    100% {
        text-shadow: 0 0 15px rgba(0, 243, 255, 0.9), 0 0 20px rgba(157, 0, 255, 0.7);
    }
}*/

/* ... otros estilos anteriores ... */
/*.text-muted {
    --bs-text-opacity: 1;
    color: rgb(196 168 213 / 75%) !important;
}*/

/* Añade estos estilos */

/* Contenedor para el texto SELLER */
/*.seller-text-container {
    position: relative;
    display: inline-block;
    perspective: 500px;
    margin-bottom: 1rem;
}*/

/* Estilo para el texto SELLER */
/*.seller-text {
    font-family: 'Rajdhani', 'Agency FB', 'Arial Narrow', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #ffeb3b;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.7);
    display: inline-block;
    transform: rotateX(15deg) translateY(-10px);
    animation: sellerPulse 3s infinite alternate, sellerFloat 5s infinite ease-in-out;
    background: linear-gradient(180deg, #ffeb3b 0%, #ffc107 50%, #ff2f00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}*/

/* Efecto de destello para SELLER */
/*.seller-glare {
    position: absolute;
    top: -10%;*/ /* Reducido de -20% */
/*left: -10%;*/ /* Reducido de -20% */
/*width: 70%;*/ /* Reducido de 140% (ahora 50% del tamaño original) */
/*height: 70%;*/ /* Reducido de 140% */
/*background: radial-gradient(circle at 70% 30%, rgba(255, 235, 59, 0.8) 0%, transparent 70%);*/ /* Aumentado de 50% a 70% para suavizar */
/*animation: sellerGlareMove 8s infinite linear;
    z-index: 1;
    opacity: 0.6;
    border-radius: 50%;*/ /* Asegura que mantenga forma circular */
/*}*/

/* Animaciones */
/*@@keyframes sellerPulse {
    0% {
        text-shadow: 0 0 10px rgba(255, 235, 59, 0.7);
        transform: rotateX(15deg) translateY(-10px) scale(1);
    }

    100% {
        text-shadow: 0 0 20px rgba(255, 235, 59, 0.9), 0 0 30px rgba(255, 152, 0, 0.5);
        transform: rotateX(10deg) translateY(-10px) scale(1.05);
    }
}

@@keyframes sellerFloat {
    0%, 100% {
        transform: rotateX(15deg) translateY(-10px);
    }

    50% {
        transform: rotateX(15deg) translateY(-15px);
    }
}

@@keyframes sellerGlareMove {

    0% {
        transform: translateX(-30%) translateY(-30%);*/ /* Reducido desplazamiento */
/*}

    50% {
        transform: translateX(30%) translateY(20%);*/ /* Reducido desplazamiento */
/*}

    100% {
        transform: translateX(-30%) translateY(-30%);*/ /* Reducido desplazamiento */
/*}
}*/

/* fuente Rajdhani si no está disponible */
/*@@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@700&display=swap');*/
/* ... resto de estilos ... */

/*:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --accent-color: #e74c3c;
    --dark-color: #00f3ff;
    --light-color: #ecf0f1;
    --neon-blue: #00f3ff;
    --neon-yellow: #ffeb3b;
    --neon-pink: #ff00f7;
    --neon-purple: #9d00ff;
}

body {
    background-color: #0a0a1a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0dcaf0;
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 243, 255, 0.05) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(157, 0, 255, 0.05) 0%, transparent 20%);
}*/

/* Estilo futurista para el título ORION */
/*.futuristic-title {
    position: relative;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    padding: 20px 40px;
    perspective: 1000px;
}

.orion-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-blue) 0%, #ffb23b 50%, #ff0052 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
    animation: textGlow 2s ease-in-out infinite alternate;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

.particles {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: radial-gradient(circle at 20% 30%, #dc3545 0%, transparent 3%), radial-gradient(circle at 80% 70%, rgb(0 255 22 / 0%) 0%, transparent 3%), radial-gradient(circle at 40% 60%, rgba(255, 235, 59, 0.8) 0%, transparent 3%), radial-gradient(circle at 60% 40%, rgb(0 76 255 / 80%) 0%, transparent 3%);
    background-size: 200% 200%;
    animation: particleMove 8s linear infinite;
    z-index: 0;
    opacity: 0.7;
}

.futuristic-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-weight: 300;
    letter-spacing: 5px;
    color: rgba(255, 235, 59, 0.8);
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.download-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

    .download-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 3px;
        background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
        border-radius: 3px;
    }

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    }

    100% {
        text-shadow: 0 0 20px rgba(0, 243, 255, 0.8), 0 0 30px rgba(255, 235, 59, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes particleMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}*/

/* Estilos para el contenido principal */
/*.container {
    max-width: 1200px;
    margin: 40px auto;
    background-color: rgba(33, 37, 41, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}*/

/* Tarjetas de boletos futuristas */
/*.ticket-card {
    background: linear-gradient(145deg, rgba(44, 62, 80, 0.7) 0%, rgba(20, 30, 48, 0.9) 100%);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

    .ticket-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 243, 255, 0.3);
        border: 1px solid var(--neon-blue);
    }

    .ticket-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    }

.ticket-header {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(0, 0, 20, 0.95) 100%);
    color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .ticket-header h2 {
        font-family: 'Orbitron', sans-serif;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0;
        background: linear-gradient(90deg, white, var(--neon-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.ticket-body {
    padding: 30px;
    position: relative;
}*/

/* Formularios futuristas */
/*.form-group label {
    font-weight: 600;
    color: var(--neon-blue);
    margin-bottom: 8px;
}

.form-control {
    height: 45px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
}

    .form-control:focus {
        border-color: var(--neon-blue);
        box-shadow: 0 0 0 0.2rem rgba(0, 243, 255, 0.25);
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
    }*/

/* Botones futuristas */
/*.btn-primary {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
        color: white;
    }

.btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

    .btn-outline-secondary:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }*/

/* Progreso de pasos futurista */
/*.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

    .progress-steps::before {
        content: "";
        position: absolute;
        top: 15px;
        left: 0;
        right: 0;
        height: 2px;
        background-color: rgba(255, 255, 255, 0.1);
        z-index: 1;
    }

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.step.active .step-number {
    background-color: var(--neon-blue);
    color: var(--dark-color);
}

.step.completed .step-number {
    background-color: var(--secondary-color);
    color: white;
}

.step-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
}

.step.active .step-label {
    color: var(--neon-blue);
}

.step.completed .step-label {
    color: var(--secondary-color);
}*/

/* Secciones */
/*.section {
    display: none;
}

    .section.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }*/

/* Imagen del evento */
/*.event-image-container {
    display: block;
    width: 100%;
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    background-color: transparent;
}

.event-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px;
}*/

/* Contador de descargas futurista */
/*.download-counter {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: bold;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    margin-left: 10px;
}

.download-limit-reached {
    color: var(--accent-color);
    border-color: var(--accent-color);
}*/

/* Alertas futuristas */
/*.alert {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.alert-info {
    background-color: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--neon-blue);
    color: white;
}

.alert-success {
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid var(--secondary-color);
    color: white;
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--neon-yellow);
    color: white;
}

.alert-danger {
    background-color: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--accent-color);
    color: white;
}*/

/* Carrito de compras futurista */
/*.cart-summary {
    background: linear-gradient(145deg, rgba(44, 62, 80, 0.7) 0%, rgba(20, 30, 48, 0.9) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}*/

/* Opciones de boletos */
/*.ticket-option {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    background-color: rgba(44, 62, 80, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

    .ticket-option:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 243, 255, 0.2);
        border-left: 4px solid var(--neon-blue);
    }

    .ticket-option.selected {
        background-color: rgba(0, 243, 255, 0.1);
        border-left: 4px solid var(--neon-blue);
    }*/

/* Control de cantidad */
/*.quantity-control button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
}

    .quantity-control button:hover {
        background-color: var(--neon-blue);
        color: white;
    }

.quantity-display {
    min-width: 40px;
    text-align: center;
    font-weight: bold;
    color: var(--neon-blue);
}*/

/* Modal futurista */
/*.modal-mensaje .modal-header {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    color: #291b4d;
    ;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-mensaje .modal-content {
    background-color: rgba(44, 62, 80, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}*/

/* Loader futurista */
/*.loader {
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--neon-blue);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 20px auto;
}*/

/* Badges */
/*.cortesia-badge {
    background-color: var(--neon-purple);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.discount-badge {
    background-color: var(--neon-pink);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}*/

/* Métodos de pago */
/*.payment-method {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(44, 62, 80, 0.5);
}

    .payment-method:hover {
        border-color: var(--neon-blue);
        box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
    }

    .payment-method.selected {
        border-color: var(--neon-blue);
        background-color: rgba(0, 243, 255, 0.1);
    }

    .payment-method.disabled {
        opacity: 0.6;
        cursor: not-allowed;
        position: relative;
    }

        .payment-method.disabled::after {
            content: "Temporalmente no disponible";
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--danger-color);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
        }

.payment-method-radio {
    margin-right: 10px;
}

.payment-method-icon {
    font-size: 24px;
    margin-right: 10px;
    color: var(--neon-blue);
}

.payment-method-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.payment-method-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}*/

/* Formulario de tarjeta */
/*.card-form {
    margin-top: 20px;
}

.card-element {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.card-errors {
    color: var(--danger-color);
    margin-top: 10px;
    font-size: 14px;
}

.card-row {
    display: flex;
    margin-bottom: 20px;
}

.card-col {
    flex: 1;
    margin-right: 15px;
}

    .card-col:last-child {
        margin-right: 0;
    }*/

/* Animaciones */
/*@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/

/* Añade esto en tu sección de estilos */

/* Efecto de pulsación para los números de los pasos */
/*.step-number {
    animation: pulse 2s infinite ease-in-out;
}*/

/* Efecto de pulsación para los títulos de los pasos */
/*.ticket-header h2 {
    animation: pulseSoft 3s infinite ease-in-out;
}*/

/* Efecto de pulsación más suave para los títulos */
/*@keyframes pulseSoft {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    }

    50% {
        transform: scale(1.03);
        text-shadow: 0 0 15px rgba(0, 243, 255, 0.8);
    }
}*/

/* Efecto de pulsación para pasos activos */
/*.step.active .step-number {
    animation: pulseActive 1.5s infinite ease-in-out;
}

@keyframes pulseActive {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 243, 255, 0);
    }
}*/

/* Efecto de pulsación para pasos completados */
/*.step.completed .step-number {
    animation: pulseCompleted 2s infinite ease-in-out;
}

@keyframes pulseCompleted {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
    }
}*/

/* Efecto para el título ORION */
/*.orion-text {
    animation: pulseTitle 4s infinite alternate;
}

@keyframes pulseTitle {
    0% {
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    }

    50% {
        text-shadow: 0 0 20px rgba(0, 243, 255, 0.8), 0 0 30px rgba(255, 235, 59, 0.6);
    }

    100% {
        text-shadow: 0 0 15px rgba(0, 243, 255, 0.7), 0 0 25px rgba(255, 0, 247, 0.5);
    }
}*/

/* Footer futurista */
/*.futuristic-footer {
    background-color: #0a0a1a;
    padding: 150px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #00f3ff, #ff00f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.brands-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.pulse-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    text-shadow: 0 0 10px currentColor;
    animation: pulse 2s infinite;
}

.social-icon {
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        transform: translateY(-5px) scale(1.2);
        text-shadow: 0 0 20px currentColor;
    }

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: 0.3;
}*/

/* Responsive */
/*@media (max-width: 768px) {
    .futuristic-title {
        font-size: 3rem;
        padding: 15px 20px;
    }

    .download-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 15px;
        margin: 20px auto;
    }

    .progress-steps {
        flex-wrap: wrap;
    }

    .step {
        flex: 1 0 25%;
        margin-bottom: 15px;
    }

    .step-label {
        font-size: 12px;
    }

    .ticket-body {
        padding: 20px;
    }

    .cart-summary {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        margin: 0;
        border-radius: 15px 15px 0 0;
        box-shadow: 0 -5px 15px rgba(0, 243, 255, 0.2);
        border: 1px solid var(--neon-blue);
        max-height: 50vh;
        overflow-y: auto;
        background: rgba(20, 30, 48, 0.95);
        z-index: 1000;
    }

        .cart-summary::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
        }
}

@media (max-width: 576px) {
    .step {
        flex: 1 0 50%;
    }
}*/

/* Estilos para los nuevos botones */
/*.btn-outline-info {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    transition: all 0.3s ease;
}

    .btn-outline-info:hover {
        color: var(--dark-color);
        background-color: var(--neon-blue);
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
        transform: translateY(-2px);
    }

.btn-outline-warning {
    color: var(--neon-yellow);
    border-color: var(--neon-yellow);
    transition: all 0.3s ease;
}

    .btn-outline-warning:hover {
        color: var(--dark-color);
        background-color: var(--neon-yellow);
        box-shadow: 0 0 15px rgba(255, 235, 59, 0.5);
        transform: translateY(-2px);
    }*/

/* Asegurar que los botones no se amontonen en móviles */
/*@media (max-width: 768px) {
    .text-center .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

        .text-center .btn + .btn {
            margin-left: 0;
        }
}*/

/* Añade estos estilos en tu sección CSS */

/* Gradiente animado para los números de los pasos */
/*.step-number {
    background: linear-gradient(135deg, #00f3ff, #9d00ff);
    background-size: 200% 200%;
    animation: gradientPulse 4s ease infinite, pulse 2s infinite ease-in-out;
    color: #0a0a1a !important;
    font-weight: bold;
    border: 2px solid rgba(255,255,255,0.3);
}*/

/* Gradiente animado para pasos activos */
/*.step.active .step-number {
    background: linear-gradient(135deg, #00f3ff, #ff00f7);
    animation: gradientPulseActive 3s ease infinite, pulseActive 1.5s infinite ease-in-out;
}*/

/* Gradiente animado para pasos completados */
/*.step.completed .step-number {
    background: linear-gradient(135deg, #2ecc71, #00f3ff);
    animation: gradientPulseCompleted 5s ease infinite, pulseCompleted 2s infinite ease-in-out;
}*/

/* Animaciones de gradiente */
/*@keyframes gradientPulse {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradientPulseActive {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 25px rgba(255, 0, 247, 0.7);
    }

    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
    }
}

@keyframes gradientPulseCompleted {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 20px rgba(0, 243, 255, 0.7);
    }

    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
    }
}*/

/* Gradiente animado para los títulos de sección */
/*.ticket-header {
    background: linear-gradient(90deg, rgba(0,0,0,0.3), rgba(0,243,255,0.2), rgba(0,0,0,0.3));
    background-size: 200% 200%;
    animation: headerGradient 6s ease infinite;
    position: relative;
    overflow: hidden;
}

    .ticket-header h2 {
        position: relative;
        z-index: 2;
        animation: pulseSoft 3s infinite ease-in-out;
    }

    .ticket-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(157, 0, 255, 0.3), transparent);
        animation: shine 3s infinite;
    }

@keyframes headerGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}*/

/* Refuerzo para el título principal */
/*.futuristic-title {
    animation: titleGlow 6s infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.7);
    }

    25% {
        text-shadow: 0 0 20px rgba(0, 243, 255, 0.9), 0 0 30px rgba(157, 0, 255, 0.5);
    }

    50% {
        text-shadow: 0 0 25px rgba(255, 0, 247, 0.8), 0 0 15px rgba(0, 243, 255, 0.6);
    }

    75% {
        text-shadow: 0 0 20px rgba(255, 235, 59, 0.7), 0 0 25px rgba(0, 243, 255, 0.5);
    }

    100% {
        text-shadow: 0 0 15px rgba(0, 243, 255, 0.9), 0 0 20px rgba(157, 0, 255, 0.7);
    }
}*/

/* ... otros estilos anteriores ... */
/*.text-muted {
    --bs-text-opacity: 1;
    color: rgb(196 168 213 / 75%) !important;
}*/

/* Añade estos estilos */

/* Contenedor para el texto SELLER */
/*.seller-text-container {
    position: relative;
    display: inline-block;
    perspective: 500px;
    margin-bottom: 1rem;
}*/

/* Estilo para el texto SELLER */
/*.seller-text {
    font-family: 'Rajdhani', 'Agency FB', 'Arial Narrow', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #ffeb3b;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.7);
    display: inline-block;
    transform: rotateX(15deg) translateY(-10px);
    animation: sellerPulse 3s infinite alternate, sellerFloat 5s infinite ease-in-out;
    background: linear-gradient(180deg, #ffeb3b 0%, #ffc107 50%, #ff2f00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}*/

/* Efecto de destello para SELLER */
/*.seller-glare {
    position: absolute;
    top: -10%;*/ /* Reducido de -20% */
/*left: -10%;*/ /* Reducido de -20% */
/*width: 70%;*/ /* Reducido de 140% (ahora 50% del tamaño original) */
/*height: 70%;*/ /* Reducido de 140% */
/*background: radial-gradient(circle at 70% 30%, rgba(255, 235, 59, 0.8) 0%, transparent 70%);*/ /* Aumentado de 50% a 70% para suavizar */
/*animation: sellerGlareMove 8s infinite linear;
    z-index: 1;
    opacity: 0.6;
    border-radius: 50%;*/ /* Asegura que mantenga forma circular */
/*}*/

/* Animaciones */
/*@keyframes sellerPulse {
    0% {
        text-shadow: 0 0 10px rgba(255, 235, 59, 0.7);
        transform: rotateX(15deg) translateY(-10px) scale(1);
    }

    100% {
        text-shadow: 0 0 20px rgba(255, 235, 59, 0.9), 0 0 30px rgba(255, 152, 0, 0.5);
        transform: rotateX(10deg) translateY(-10px) scale(1.05);
    }
}

@keyframes sellerFloat {
    0%, 100% {
        transform: rotateX(15deg) translateY(-10px);
    }

    50% {
        transform: rotateX(15deg) translateY(-15px);
    }
}

@keyframes sellerGlareMove {

    0% {
        transform: translateX(-30%) translateY(-30%);*/ /* Reducido desplazamiento */
/*}

    50% {
        transform: translateX(30%) translateY(20%);*/ /* Reducido desplazamiento */
/*}

    100% {
        transform: translateX(-30%) translateY(-30%);*/ /* Reducido desplazamiento */
/*}
}*/

/* fuente Rajdhani si no está disponible */
/*@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@700&display=swap');*/
/* ... resto de estilos ... */


:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --accent-color: #e74c3c;
    --dark-color: #00f3ff;
    --light-color: #ecf0f1;
    --neon-blue: #00f3ff;
    --neon-yellow: #ffeb3b;
    --neon-pink: #ff00f7;
    --neon-purple: #9d00ff;
}

body {
    background-color: #0a0a1a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0dcaf0;
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 243, 255, 0.05) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(157, 0, 255, 0.05) 0%, transparent 20%);
}

/* Estilo futurista para el título ORION */
.futuristic-title {
    position: relative;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    padding: 20px 40px;
    perspective: 1000px;
}

.orion-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-blue) 0%, #ffb23b 50%, #ff0052 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
    animation: textGlow 2s ease-in-out infinite alternate;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

.particles {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: radial-gradient(circle at 20% 30%, #dc3545 0%, transparent 3%), radial-gradient(circle at 80% 70%, rgb(0 255 22 / 0%) 0%, transparent 3%), radial-gradient(circle at 40% 60%, rgba(255, 235, 59, 0.8) 0%, transparent 3%), radial-gradient(circle at 60% 40%, rgb(0 76 255 / 80%) 0%, transparent 3%);
    background-size: 200% 200%;
    animation: particleMove 8s linear infinite;
    z-index: 0;
    opacity: 0.7;
}

.futuristic-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-weight: 300;
    letter-spacing: 5px;
    color: rgba(255, 235, 59, 0.8);
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.download-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

    .download-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 3px;
        background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
        border-radius: 3px;
    }

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    }

    100% {
        text-shadow: 0 0 20px rgba(0, 243, 255, 0.8), 0 0 30px rgba(255, 235, 59, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes particleMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

/* Estilos para el contenido principal */
.container {
    max-width: 1200px;
    margin: 40px auto;
    background-color: rgba(33, 37, 41, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tarjetas de boletos futuristas */
.ticket-card {
    background: linear-gradient(145deg, rgba(44, 62, 80, 0.7) 0%, rgba(20, 30, 48, 0.9) 100%);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

    .ticket-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 243, 255, 0.3);
        border: 1px solid var(--neon-blue);
    }

    .ticket-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    }

.ticket-header {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(0, 0, 20, 0.95) 100%);
    color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .ticket-header h2 {
        font-family: 'Orbitron', sans-serif;
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0;
        background: linear-gradient(90deg, white, var(--neon-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.ticket-body {
    padding: 30px;
    position: relative;
}

/* Formularios futuristas */
.form-group label {
    font-weight: 600;
    color: var(--neon-blue);
    margin-bottom: 8px;
}

.form-control {
    height: 45px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
}

    .form-control:focus {
        border-color: var(--neon-blue);
        box-shadow: 0 0 0 0.2rem rgba(0, 243, 255, 0.25);
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
    }

/* Botones futuristas */
.btn-primary {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
        color: white;
    }

.btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

    .btn-outline-secondary:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }

/* Progreso de pasos futurista */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

    .progress-steps::before {
        content: "";
        position: absolute;
        top: 15px;
        left: 0;
        right: 0;
        height: 2px;
        background-color: rgba(255, 255, 255, 0.1);
        z-index: 1;
    }

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.step.active .step-number {
    background-color: var(--neon-blue);
    color: var(--dark-color);
}

.step.completed .step-number {
    background-color: var(--secondary-color);
    color: white;
}

.step-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
}

.step.active .step-label {
    color: var(--neon-blue);
}

.step.completed .step-label {
    color: var(--secondary-color);
}

/* Secciones */
.section {
    display: none;
}

    .section.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

/* Imagen del evento */
.event-image-container {
    display: block;
    width: 100%;
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    background-color: transparent;
}

.event-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px;
}

/* Contador de descargas futurista */
.download-counter {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: bold;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    margin-left: 10px;
}

.download-limit-reached {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Alertas futuristas */
.alert {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.alert-info {
    background-color: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--neon-blue);
    color: white;
}

.alert-success {
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid var(--secondary-color);
    color: white;
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--neon-yellow);
    color: white;
}

.alert-danger {
    background-color: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--accent-color);
    color: white;
}

/* Carrito de compras futurista */
.cart-summary {
    background: linear-gradient(145deg, rgba(44, 62, 80, 0.7) 0%, rgba(20, 30, 48, 0.9) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

/* Opciones de boletos */
.ticket-option {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    background-color: rgba(44, 62, 80, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

    .ticket-option:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 243, 255, 0.2);
        border-left: 4px solid var(--neon-blue);
    }

    .ticket-option.selected {
        background-color: rgba(0, 243, 255, 0.1);
        border-left: 4px solid var(--neon-blue);
    }

/* Control de cantidad */
.quantity-control button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
}

    .quantity-control button:hover {
        background-color: var(--neon-blue);
        color: white;
    }

.quantity-display {
    min-width: 40px;
    text-align: center;
    font-weight: bold;
    color: var(--neon-blue);
}

/* Modal futurista */
.modal-mensaje .modal-header {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    color: #291b4d;
    ;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-mensaje .modal-content {
    background-color: rgba(44, 62, 80, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Loader futurista */
.loader {
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--neon-blue);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 20px auto;
}

/* Badges */
.cortesia-badge {
    background-color: var(--neon-purple);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.discount-badge {
    background-color: var(--neon-pink);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

/* Métodos de pago */
.payment-method {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(44, 62, 80, 0.5);
}

    .payment-method:hover {
        border-color: var(--neon-blue);
        box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
    }

    .payment-method.selected {
        border-color: var(--neon-blue);
        background-color: rgba(0, 243, 255, 0.1);
    }

    .payment-method.disabled {
        opacity: 0.6;
        cursor: not-allowed;
        position: relative;
    }

        .payment-method.disabled::after {
            content: "Temporalmente no disponible";
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--danger-color);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
        }

.payment-method-radio {
    margin-right: 10px;
}

.payment-method-icon {
    font-size: 24px;
    margin-right: 10px;
    color: var(--neon-blue);
}

.payment-method-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.payment-method-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Formulario de tarjeta */
.card-form {
    margin-top: 20px;
}

.card-element {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.card-errors {
    color: var(--danger-color);
    margin-top: 10px;
    font-size: 14px;
}

.card-row {
    display: flex;
    margin-bottom: 20px;
}

.card-col {
    flex: 1;
    margin-right: 15px;
}

    .card-col:last-child {
        margin-right: 0;
    }

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Añade esto en tu sección de estilos */

/* Efecto de pulsación para los números de los pasos */
.step-number {
    animation: pulse 2s infinite ease-in-out;
}

/* Efecto de pulsación para los títulos de los pasos */
.ticket-header h2 {
    animation: pulseSoft 3s infinite ease-in-out;
}

/* Efecto de pulsación más suave para los títulos */
@keyframes pulseSoft {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    }

    50% {
        transform: scale(1.03);
        text-shadow: 0 0 15px rgba(0, 243, 255, 0.8);
    }
}

/* Efecto de pulsación para pasos activos */
.step.active .step-number {
    animation: pulseActive 1.5s infinite ease-in-out;
}

@keyframes pulseActive {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 243, 255, 0);
    }
}

/* Efecto de pulsación para pasos completados */
.step.completed .step-number {
    animation: pulseCompleted 2s infinite ease-in-out;
}

@keyframes pulseCompleted {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
    }
}

/* Efecto para el título ORION */
.orion-text {
    animation: pulseTitle 4s infinite alternate;
}

@keyframes pulseTitle {
    0% {
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    }

    50% {
        text-shadow: 0 0 20px rgba(0, 243, 255, 0.8), 0 0 30px rgba(255, 235, 59, 0.6);
    }

    100% {
        text-shadow: 0 0 15px rgba(0, 243, 255, 0.7), 0 0 25px rgba(255, 0, 247, 0.5);
    }
}

/* Footer futurista */
.futuristic-footer {
    background-color: #0a0a1a;
    padding: 150px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #00f3ff, #ff00f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.brands-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.pulse-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    text-shadow: 0 0 10px currentColor;
    animation: pulse 2s infinite;
}

.social-icon {
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        transform: translateY(-5px) scale(1.2);
        text-shadow: 0 0 20px currentColor;
    }

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 768px) {
    .futuristic-title {
        font-size: 3rem;
        padding: 15px 20px;
    }

    .download-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 15px;
        margin: 20px auto;
    }

    .progress-steps {
        flex-wrap: wrap;
    }

    .step {
        flex: 1 0 25%;
        margin-bottom: 15px;
    }

    .step-label {
        font-size: 12px;
    }

    .ticket-body {
        padding: 20px;
    }

    .cart-summary {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        margin: 0;
        border-radius: 15px 15px 0 0;
        box-shadow: 0 -5px 15px rgba(0, 243, 255, 0.2);
        border: 1px solid var(--neon-blue);
        max-height: 50vh;
        overflow-y: auto;
        background: rgba(20, 30, 48, 0.95);
        z-index: 1000;
    }

        .cart-summary::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
        }
}

@media (max-width: 576px) {
    .step {
        flex: 1 0 50%;
    }
}

/* Estilos para los nuevos botones */
.btn-outline-info {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    transition: all 0.3s ease;
}

    .btn-outline-info:hover {
        color: var(--dark-color);
        background-color: var(--neon-blue);
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
        transform: translateY(-2px);
    }

.btn-outline-warning {
    color: var(--neon-yellow);
    border-color: var(--neon-yellow);
    transition: all 0.3s ease;
}

    .btn-outline-warning:hover {
        color: var(--dark-color);
        background-color: var(--neon-yellow);
        box-shadow: 0 0 15px rgba(255, 235, 59, 0.5);
        transform: translateY(-2px);
    }

/* Asegurar que los botones no se amontonen en móviles */
@media (max-width: 768px) {
    .text-center .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

        .text-center .btn + .btn {
            margin-left: 0;
        }
}

/* Añade estos estilos en tu sección CSS */

/* Gradiente animado para los números de los pasos */
.step-number {
    background: linear-gradient(135deg, #00f3ff, #9d00ff);
    background-size: 200% 200%;
    animation: gradientPulse 4s ease infinite, pulse 2s infinite ease-in-out;
    color: #0a0a1a !important;
    font-weight: bold;
    border: 2px solid rgba(255,255,255,0.3);
}

/* Gradiente animado para pasos activos */
.step.active .step-number {
    background: linear-gradient(135deg, #00f3ff, #ff00f7);
    animation: gradientPulseActive 3s ease infinite, pulseActive 1.5s infinite ease-in-out;
}

/* Gradiente animado para pasos completados */
.step.completed .step-number {
    background: linear-gradient(135deg, #2ecc71, #00f3ff);
    animation: gradientPulseCompleted 5s ease infinite, pulseCompleted 2s infinite ease-in-out;
}

/* Animaciones de gradiente */
@keyframes gradientPulse {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradientPulseActive {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 25px rgba(255, 0, 247, 0.7);
    }

    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
    }
}

@keyframes gradientPulseCompleted {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 20px rgba(0, 243, 255, 0.7);
    }

    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
    }
}

/* Gradiente animado para los títulos de sección */
.ticket-header {
    background: linear-gradient(90deg, rgba(0,0,0,0.3), rgba(0,243,255,0.2), rgba(0,0,0,0.3));
    background-size: 200% 200%;
    animation: headerGradient 6s ease infinite;
    position: relative;
    overflow: hidden;
}

    .ticket-header h2 {
        position: relative;
        z-index: 2;
        animation: pulseSoft 3s infinite ease-in-out;
    }

    .ticket-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(157, 0, 255, 0.3), transparent);
        animation: shine 3s infinite;
    }

@keyframes headerGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Refuerzo para el título principal */
.futuristic-title {
    animation: titleGlow 6s infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.7);
    }

    25% {
        text-shadow: 0 0 20px rgba(0, 243, 255, 0.9), 0 0 30px rgba(157, 0, 255, 0.5);
    }

    50% {
        text-shadow: 0 0 25px rgba(255, 0, 247, 0.8), 0 0 15px rgba(0, 243, 255, 0.6);
    }

    75% {
        text-shadow: 0 0 20px rgba(255, 235, 59, 0.7), 0 0 25px rgba(0, 243, 255, 0.5);
    }

    100% {
        text-shadow: 0 0 15px rgba(0, 243, 255, 0.9), 0 0 20px rgba(157, 0, 255, 0.7);
    }
}

/* ... otros estilos anteriores ... */
.text-muted {
    --bs-text-opacity: 1;
    color: rgb(196 168 213 / 75%) !important;
}

/* Añade estos estilos */

/* Contenedor para el texto SELLER */
.seller-text-container {
    position: relative;
    display: inline-block;
    perspective: 500px;
    margin-bottom: 1rem;
}

/* Estilo para el texto SELLER */
.seller-text {
    font-family: 'Rajdhani', 'Agency FB', 'Arial Narrow', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #ffeb3b;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.7);
    display: inline-block;
    transform: rotateX(15deg) translateY(-10px);
    animation: sellerPulse 3s infinite alternate, sellerFloat 5s infinite ease-in-out;
    background: linear-gradient(180deg, #ffeb3b 0%, #ffc107 50%, #ff2f00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

/* Efecto de destello para SELLER */
.seller-glare {
    position: absolute;
    top: -10%; /* Reducido de -20% */
    left: -10%; /* Reducido de -20% */
    width: 70%; /* Reducido de 140% (ahora 50% del tamaño original) */
    height: 70%; /* Reducido de 140% */
    background: radial-gradient(circle at 70% 30%, rgba(255, 235, 59, 0.8) 0%, transparent 70%); /* Aumentado de 50% a 70% para suavizar */
    animation: sellerGlareMove 8s infinite linear;
    z-index: 1;
    opacity: 0.6;
    border-radius: 50%; /* Asegura que mantenga forma circular */
}

/* Animaciones */
@keyframes sellerPulse {
    0% {
        text-shadow: 0 0 10px rgba(255, 235, 59, 0.7);
        transform: rotateX(15deg) translateY(-10px) scale(1);
    }

    100% {
        text-shadow: 0 0 20px rgba(255, 235, 59, 0.9), 0 0 30px rgba(255, 152, 0, 0.5);
        transform: rotateX(10deg) translateY(-10px) scale(1.05);
    }
}

@keyframes sellerFloat {
    0%, 100% {
        transform: rotateX(15deg) translateY(-10px);
    }

    50% {
        transform: rotateX(15deg) translateY(-15px);
    }
}

@keyframes sellerGlareMove {

    0% {
        transform: translateX(-30%) translateY(-30%); /* Reducido desplazamiento */
    }

    50% {
        transform: translateX(30%) translateY(20%); /* Reducido desplazamiento */
    }

    100% {
        transform: translateX(-30%) translateY(-30%); /* Reducido desplazamiento */
    }
}

/* fuente Rajdhani si no está disponible */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@700&display=swap');
/* ... resto de estilos ... */
