/* css/hero-right.css - Sección derecha del hero - CON GRID 2x2 Y PRECIO PREFERENCIAL */

/* ===== SECCIÓN DERECHA (VIDEO Y GRIDS) ===== */
.hero-video {
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 420px;
    flex-shrink: 0;
}

/* AJUSTES RESPONSIVOS PARA PANTALLAS GRANDES */
@media (min-width: 1400px) {
    .hero-video {
        width: 480px;
        gap: var(--spacing-lg);
    }
}

@media (min-width: 1600px) {
    .hero-video {
        width: 520px;
    }
}

@media (min-width: 1920px) {
    .hero-video {
        width: 550px;
    }
}

/* ===== CONTENEDOR DEL VIDEO ===== */
.video-container {
    position: relative;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    aspect-ratio: 16/9;
    width: 100%;
    max-width: 420px;
}

@media (min-width: 1400px) {
    .video-container {
        max-width: 480px;
    }
}

@media (min-width: 1600px) {
    .video-container {
        max-width: 520px;
    }
}

@media (min-width: 1920px) {
    .video-container {
        max-width: 550px;
    }
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-wrapper iframe {
    border: none;
    border-radius: var(--border-radius-lg);
}

/* ===== TÍTULO DEL VIDEO ===== */
.video-title {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--secondary-color);
    background: var(--light-color);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

/* ===== GRID DE INFORMACIÓN DEL EVENTO - FORMATO 2x2 ===== */
.hero-right .event-info-grid {
    /* CAMBIO PRINCIPAL: Grid 2x2 */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--spacing-sm);
    margin: 0;
    width: 100%;
    max-width: 420px;
    align-items: stretch;
    justify-items: stretch;
}

/* DESKTOP - GRIDS MÁS GRANDES */
@media (min-width: 1200px) {
    .hero-right .event-info-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: var(--spacing-md);
        max-width: 420px;
    }
}

/* AJUSTES PARA PANTALLAS GRANDES */
@media (min-width: 1400px) {
    .hero-right .event-info-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        max-width: 480px;
        gap: var(--spacing-md);
    }
}

@media (min-width: 1600px) {
    .hero-right .event-info-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        max-width: 520px;
    }
}

@media (min-width: 1920px) {
    .hero-right .event-info-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        max-width: 550px;
    }
}

/* TABLET - MANTENER 2x2 */
@media (min-width: 769px) and (max-width: 1199px) {
    .hero-right .event-info-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: var(--spacing-xs);
        max-width: 360px;
        margin: 0 auto;
    }
}

/* MÓVIL - MANTENER 2x2 COMPACTO */
@media (max-width: 768px) {
    .hero-right .event-info-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: var(--spacing-xs);
        max-width: 100%;
        margin: 0;
        width: 100%;
        padding: 0 4px;
    }
}

/* MÓVIL PEQUEÑO - 2x2 MÁS COMPACTO */
@media (max-width: 480px) {
    .hero-right .event-info-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 4px;
        max-width: 100%;
        width: 100%;
        padding: 0 2px;
    }
}

/* MÓVIL EXTRA PEQUEÑO - 2x2 ULTRA COMPACTO */
@media (max-width: 320px) {
    .hero-right .event-info-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 2px;
        padding: 0 1px;
    }
}

/* ===== TARJETAS DE INFORMACIÓN - ESTÁNDAR ===== */
.hero-right .event-card {
    background: rgba(255, 255, 255, 0.087);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
    height: auto;
    box-sizing: border-box;
}

.hero-right .event-card i {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.hero-right .event-card h3 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--light-color);
    margin: var(--spacing-xs) 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.hero-right .event-card p {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.3;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right .event-card small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: var(--spacing-xs);
    line-height: 1.2;
}

.hero-right .price-highlight {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
    margin: var(--spacing-xs) 0;
}

/* ===== TARJETA ESPECIAL DE PRECIO PREFERENCIAL ===== */
.hero-right .special-pricing-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: visible;
}

.hero-right .special-pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    border-radius: var(--border-radius-md);
    z-index: -1;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

/* ===== LOGOS DE INSTITUCIONES CIEMI Y SPIA ===== */
.special-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

.institution-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

/* ===== PRECIO ESPECIAL ===== */
.special-price {
    color: #FF6B35;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===== BADGE DE CUPOS LIMITADOS ===== */
.limited-spots {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ===== AJUSTES MÓVILES PARA TARJETA ESPECIAL ===== */
@media (max-width: 768px) {
    .institution-logo {
        width: 24px;
        height: 24px;
    }

    .limited-spots {
        position: static;
        margin-top: var(--spacing-xs);
        align-self: center;
        font-size: 0.6rem;
        padding: 2px 8px;
    }

    .special-logos {
        gap: 4px;
        margin-bottom: 4px;
    }
}

/* ===== EFECTOS HOVER ===== */
.hero-right .event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.hero-right .special-pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* ===== AJUSTES RESPONSIVOS PARA TARJETAS ===== */
@media (min-width: 1200px) {
    .hero-right .event-card {
        padding: var(--spacing-md);
        min-height: 110px;
    }

    .hero-right .event-card i {
        font-size: 1.3rem;
    }

    .hero-right .event-card h3 {
        font-size: var(--font-size-base);
    }

    .hero-right .price-highlight {
        font-size: 1.4rem;
    }
}

@media (min-width: 1400px) {
    .hero-right .event-card {
        padding: var(--spacing-lg);
        min-height: 120px;
    }

    .hero-right .event-card i {
        font-size: 1.4rem;
    }

    .hero-right .price-highlight {
        font-size: 1.5rem;
    }
}

/* TABLET - AJUSTES PARA TARJETAS */
@media (min-width: 769px) and (max-width: 1199px) {
    .hero-right .event-card {
        padding: var(--spacing-sm);
        min-height: 90px;
    }

    .hero-right .event-card i {
        font-size: 1rem;
    }

    .hero-right .event-card h3 {
        font-size: var(--font-size-xs);
    }

    .hero-right .price-highlight {
        font-size: 1.1rem;
    }
}

/* MÓVIL - AJUSTES PARA TARJETAS EN 2x2 */
@media (max-width: 768px) {
    .hero-right .event-card {
        padding: var(--spacing-xs);
        min-height: 90px;
        /* Altura mínima para 2x2 */
    }

    .hero-right .event-card i {
        font-size: 0.9rem;
    }

    .hero-right .event-card h3 {
        font-size: var(--font-size-xs);
        margin: 2px 0 4px 0;
        line-height: 1.1;
    }

    .hero-right .event-card p {
        font-size: 0.65rem;
        line-height: 1.2;
        margin: 0;
    }

    .hero-right .event-card small {
        font-size: 0.55rem;
        margin-top: 2px;
    }

    .hero-right .price-highlight {
        font-size: 1rem;
        margin: 2px 0;
    }

    /* Ajustes específicos para la tarjeta especial en móvil */
    .hero-right .special-pricing-card {
        padding: var(--spacing-xs);
        min-height: 90px;
    }

    .institution-logo {
        width: 20px;
        height: 20px;
    }

    .limited-spots {
        position: static;
        margin-top: var(--spacing-xs);
        align-self: center;
        font-size: 0.55rem;
        padding: 1px 6px;
    }

    .special-logos {
        gap: 3px;
        margin-bottom: 2px;
    }
}

@media (max-width: 480px) {
    .hero-right .event-card {
        padding: 4px 2px;
        min-height: 85px;
        /* Altura optimizada para 2x2 compacto */
    }

    .hero-right .event-card i {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }

    .hero-right .event-card h3 {
        font-size: 0.6rem;
        margin: 1px 0 2px 0;
        line-height: 1;
    }

    .hero-right .event-card p {
        font-size: 0.55rem;
        line-height: 1.1;
        margin: 0;
    }

    .hero-right .event-card small {
        font-size: 0.5rem;
        margin-top: 1px;
        line-height: 1;
    }

    .hero-right .price-highlight {
        font-size: 0.85rem;
        margin: 1px 0;
    }

    /* Tarjeta especial móvil pequeño */
    .institution-logo {
        width: 16px;
        height: 16px;
    }

    .limited-spots {
        font-size: 0.5rem;
        padding: 1px 4px;
        margin-top: 2px;
    }
}

@media (max-width: 320px) {
    .hero-right .event-card {
        padding: 2px 1px;
        min-height: 75px;
        /* Altura mínima para pantallas muy pequeñas */
    }

    .hero-right .event-card i {
        font-size: 0.7rem;
        margin-bottom: 1px;
    }

    .hero-right .event-card h3 {
        font-size: 0.55rem;
        margin: 1px 0;
        line-height: 0.9;
        /* Permitir texto en múltiples líneas si es necesario */
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-right .event-card p {
        font-size: 0.5rem;
        line-height: 1;
        margin: 0;
        /* Permitir salto de línea en textos largos */
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-right .event-card small {
        font-size: 0.45rem;
        margin-top: 1px;
        line-height: 0.9;
    }

    .hero-right .price-highlight {
        font-size: 0.8rem;
        margin: 1px 0;
    }

    /* Tarjeta especial para pantallas extra pequeñas */
    .institution-logo {
        width: 14px;
        height: 14px;
    }

    .limited-spots {
        font-size: 0.45rem;
        padding: 1px 3px;
        margin-top: 1px;
    }

    .special-logos {
        gap: 2px;
        margin-bottom: 1px;
    }
}

/* ===== MÉTODOS DE PAGO ===== */
.payment-methods-message {
    padding: 0;
    margin-top: 6px;
    text-align: center;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

@media (min-width: 1400px) {
    .payment-methods-message {
        max-width: 480px;
        margin-top: 8px;
        gap: 6px;
    }
}

@media (min-width: 1600px) {
    .payment-methods-message {
        max-width: 520px;
        margin-top: 10px;
        gap: 8px;
    }
}

@media (min-width: 1920px) {
    .payment-methods-message {
        max-width: 550px;
        margin-top: 12px;
        gap: 10px;
    }
}

.payment-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    color: var(--light-color);
    font-size: var(--font-size-xs);
    font-weight: 600;
    opacity: 0.9;
    white-space: nowrap;
}

.payment-text i {
    color: var(--accent-color);
    font-size: var(--font-size-xs);
    flex-shrink: 0;
}

@media (min-width: 1400px) {
    .payment-text {
        font-size: var(--font-size-sm);
        gap: var(--spacing-sm);
    }

    .payment-text i {
        font-size: var(--font-size-sm);
    }
}

@media (min-width: 1600px) {
    .payment-text {
        font-size: var(--font-size-base);
    }

    .payment-text i {
        font-size: var(--font-size-base);
    }
}

@media (min-width: 1920px) {
    .payment-text {
        font-size: var(--font-size-lg);
    }

    .payment-text i {
        font-size: var(--font-size-lg);
    }
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xs);
    width: 100%;
    max-width: 300px;
    justify-items: center;
}

@media (min-width: 1400px) {
    .payment-options {
        gap: var(--spacing-sm);
        max-width: 320px;
    }
}

@media (min-width: 1600px) {
    .payment-options {
        gap: var(--spacing-md);
        max-width: 360px;
    }
}

@media (min-width: 1920px) {
    .payment-options {
        gap: var(--spacing-lg);
        max-width: 400px;
    }
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--light-color);
    font-size: 0.6rem;
    font-weight: 500;
    opacity: 0.85;
    transition: all var(--transition-normal);
    cursor: pointer;
    padding: 4px 2px;
    border-radius: 4px;
    text-align: center;
    min-width: 0;
    max-width: 60px;
}

.payment-option:hover {
    opacity: 1;
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.1);
}

.payment-option i {
    font-size: 1rem;
    transition: all var(--transition-normal);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
}

.payment-option span {
    font-size: 0.6rem;
    text-align: center;
    word-wrap: break-word;
    line-height: 1.1;
}

/* Colores específicos por método de pago */
.payment-option.visa img {
    width: 23.5px;
}

.payment-option.mastercard img {
    width: 23.5px;
}

.payment-option.paypal img {
    width: 23.5px;
}

.payment-option.bank img {
    width: 17px;
}

/* AJUSTES RESPONSIVOS PARA MÉTODOS DE PAGO */
@media (min-width: 1400px) {
    .payment-option {
        font-size: 0.7rem;
        padding: 6px 4px;
        max-width: 70px;
    }

    .payment-option i {
        font-size: 1.2rem;
    }

    .payment-option span {
        font-size: 0.7rem;
    }
}

@media (min-width: 1600px) {
    .payment-option {
        font-size: 0.75rem;
        padding: 8px 6px;
        max-width: 80px;
    }

    .payment-option i {
        font-size: 1.4rem;
    }

    .payment-option span {
        font-size: 0.75rem;
    }
}

@media (min-width: 1920px) {
    .payment-option {
        font-size: 0.8rem;
        padding: 10px 8px;
        max-width: 90px;
    }

    .payment-option i {
        font-size: 1.6rem;
    }

    .payment-option span {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .payment-methods-message {
        margin-top: 8px;
        padding: 0;
        max-width: 100%;
        gap: 6px;
    }

    .payment-text {
        font-size: 0.7rem;
        gap: 4px;
        margin-bottom: 0;
    }

    .payment-text i {
        font-size: 0.7rem;
    }

    .payment-options {
        gap: 8px;
        max-width: 280px;
        margin: 0 auto;
    }

    .payment-option {
        font-size: 0.55rem;
        padding: 6px 3px;
        max-width: 60px;
        min-width: 50px;
    }

    .payment-option i {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .payment-option span {
        font-size: 0.55rem;
        line-height: 1;
    }
}

@media (max-width: 480px) {
    .payment-methods-message {
        margin-top: 6px;
        gap: 4px;
    }

    .payment-text {
        font-size: 0.65rem;
        gap: 3px;
    }

    .payment-text i {
        font-size: 0.65rem;
    }

    .payment-options {
        gap: 6px;
        max-width: 240px;
    }

    .payment-option {
        font-size: 0.5rem;
        padding: 4px 2px;
        max-width: 50px;
        min-width: 45px;
    }

    .payment-option i {
        font-size: 0.9rem;
        margin-bottom: 1px;
    }

    .payment-option span {
        font-size: 0.5rem;
        line-height: 0.9;
    }
}

@media (max-width: 320px) {
    .payment-option {
        font-size: 0.45rem;
        padding: 3px 1px;
        max-width: 45px;
        min-width: 40px;
    }

    .payment-option i {
        font-size: 0.8rem;
    }

    .payment-option span {
        font-size: 0.45rem;
        line-height: 0.8;
    }
}

/* ===== CTA PRINCIPAL EN SECCIÓN DERECHA ===== */
.hero-video .main-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c00 100%);
    color: var(--light-color);
    padding: 1rem;
    border-radius: var(--border-radius-pill);
    text-decoration: none;
    font-size: var(--font-size-xl);
    font-weight: 900;
    box-shadow: 0 12px 35px rgba(255, 165, 0, 0.7);
    transition: all var(--transition-normal);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    margin-top: 8px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.hero-video .main-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.hero-video .main-cta:hover::before {
    left: 100%;
}

.hero-video .main-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 50px rgba(255, 165, 0, 0.8);
}

.hero-video .main-cta:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-video .main-cta i {
    font-size: var(--font-size-2xl);
    animation: rocket-bounce-strong 1.8s ease-in-out infinite;
}

@keyframes rocket-bounce-strong {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-4px) rotate(-5deg);
    }

    50% {
        transform: translateY(-6px) rotate(0deg);
    }

    75% {
        transform: translateY(-4px) rotate(5deg);
    }
}

/* AJUSTES PARA PANTALLAS GRANDES - CTA */
@media (min-width: 1400px) {
    .hero-video .main-cta {
        max-width: 480px;
        font-size: 1.3rem;
        padding: var(--spacing-xl) var(--spacing-2xl);
        margin-top: var(--spacing-lg);
    }
}

@media (min-width: 1600px) {
    .hero-video .main-cta {
        max-width: 520px;
        font-size: 1.4rem;
    }
}

@media (min-width: 1920px) {
    .hero-video .main-cta {
        max-width: 550px;
        font-size: 1.5rem;
        padding: var(--spacing-2xl) var(--spacing-3xl);
    }
}

@media (max-width: 768px) {
    .hero-video .main-cta {
        margin-top: 12px;
        font-size: var(--font-size-base);
        padding: var(--spacing-md) var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .hero-video .main-cta {
        margin-top: 8px;
        font-size: var(--font-size-sm);
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/* ===== ANIMACIÓN DE PULSO PARA CTA ===== */
.main-cta.pulse-button {
    animation: pulse-orange-mega 2.5s ease-in-out infinite;
    box-shadow: 0 12px 35px rgba(255, 165, 0, 0.7) !important;
}

@keyframes pulse-orange-mega {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 12px 35px rgba(255, 165, 0, 0.7);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 16px 45px rgba(255, 165, 0, 0.95);
    }
}

/* ===== ANIMACIÓN DE ENTRADA ===== */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== PLAY BUTTON OVERLAY PARA VIDEO ===== */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ff8c00);
    border: none;
    border-radius: 50%;
    color: var(--light-color);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.6);
    transition: all var(--transition-normal);
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 165, 0, 0.4);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 165, 0, 0.8);
}

.play-button i {
    margin-left: 4px;
    animation: play-bounce 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

@keyframes play-bounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(2px);
    }
}

/* ===== URGENCY BADGE ===== */
.urgency-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-pill);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 15;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.5);
    animation: urgent-pulse 2s infinite;
}

.urgency-badge i {
    margin-right: var(--spacing-xs);
    animation: urgent-flash 1.5s infinite;
}

@keyframes urgent-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes urgent-flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* ===== VIDEO LABEL ===== */
.video-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--light-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-xs);
    font-weight: 600;
    backdrop-filter: blur(5px);
    z-index: 10;
}

/* ===== MEJORAS PARA USUARIOS CON PREFERENCIAS DE MOVIMIENTO REDUCIDO ===== */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation: none;
    }

    .play-button::before {
        animation: none;
    }

    .play-button i {
        animation: none;
    }

    .urgency-badge {
        animation: none;
    }

    .urgency-badge i {
        animation: none;
    }

    .limited-spots {
        animation: none;
    }

    .special-pricing-card::before {
        animation: none;
    }

    .hero-video .main-cta i {
        animation: none;
    }

    .main-cta.pulse-button {
        animation: none;
    }
}

/* ===== MEJORAS PARA MODO OSCURO ===== */
@media (prefers-color-scheme: dark) {
    .video-container {
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    .hero-right .event-card {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .hero-right .special-pricing-card {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.15) 100%);
        border-color: rgba(255, 215, 0, 0.5);
    }

    .payment-methods-message {
        background: rgba(0, 0, 0, 0.3);
    }
}

/* ===== AJUSTES PARA DISPOSITIVOS CON HOVER ===== */
@media (hover: hover) and (pointer: fine) {
    .hero-right .event-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .hero-right .special-pricing-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }

    .payment-option:hover {
        transform: translateY(-2px) scale(1.05);
    }
}

/* ===== AJUSTES PARA DISPOSITIVOS TÁCTILES ===== */
@media (hover: none) and (pointer: coarse) {
    .hero-video .main-cta {
        min-height: 56px;
        padding: var(--spacing-lg) var(--spacing-xl);
    }

    .payment-option {
        min-height: 44px;
        min-width: 44px;
    }

    .hero-right .event-card {
        min-height: 80px;
    }

    .play-button {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }

    .play-button::before {
        width: 110px;
        height: 110px;
    }
}

/* ===== COMPATIBILIDAD CON NAVEGADORES ANTIGUOS ===== */
/* Fallbacks para backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .video-container {
        background: rgba(0, 0, 0, 0.3);
    }

    .payment-methods-message {
        background: rgba(255, 255, 255, 0.9);
        color: var(--dark-color);
    }

    .video-label {
        background: rgba(0, 0, 0, 0.9);
    }
}

/* Fallbacks para CSS Grid */
@supports not (display: grid) {
    .hero-right .event-info-grid {
        display: flex;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }

    .hero-right .event-card {
        flex: 1 1 calc(50% - var(--spacing-sm));
        min-width: 150px;
    }

    .payment-options {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .payment-option {
        flex: 1 1 auto;
        max-width: 25%;
    }
}

/* ===== PRINT STYLES ===== */
@media print {

    .hero-video,
    .video-container,
    .payment-methods-message,
    .urgency-badge,
    .hero-video .main-cta,
    .play-button {
        display: none;
    }

    .hero-right .event-info-grid {
        background: white;
        color: black;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }

    .hero-right .event-card {
        background: white;
        color: black;
        border: 1px solid #ddd;
    }

    .hero-right .special-pricing-card {
        background: #ffffcc;
        border: 2px solid #ffcc00;
    }
}

/* ===== DEBUGGING HELPERS (Remover en producción) ===== */
/*
.hero-video {
    outline: 2px solid orange;
}

.event-info-grid {
    outline: 2px solid purple;
}

.event-card {
    outline: 1px solid cyan;
}

.special-pricing-card {
    outline: 2px solid gold;
}

.payment-methods-message {
    outline: 2px solid lime;
}
*/