/* 
 * Pantalla de Bloqueo por Suscripción Expirada
 * Bloqueo total del sistema con estética premium
 */

.expiration-lock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    animation: fadeInLock 0.6s ease-out;
}

.lock-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 32px;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.lock-icon-container {
    width: 80px;
    height: 80px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    animation: pulseLock 2s infinite;
}

.lock-card h1 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lock-card p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-box {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 1rem;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    color: #a78bfa;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ddd6fe;
    letter-spacing: 1px;
}

@keyframes fadeInLock {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(15px);
    }
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}