/* 
 * Primeiro Acesso - Premium Styles
 */

.overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    animation: fadeIn 0.4s var(--swift);
}

.overlay-content {
    background: rgba(10, 10, 12, 0.95);
    padding: 3.5rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
    max-width: 420px;
    width: 100%;
    text-align: center;
    transform: scale(1);
    animation: cardScale 0.6s var(--bounce);
}

@keyframes cardScale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.status-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.premium-spinner {
    width: 72px;
    height: 72px;
    border: 4px solid rgba(212, 175, 55, 0.1);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.security-tip {
    margin-top: 2rem;
    animation: fadeIn 0.8s var(--swift);
}

.security-card {
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: left;
}

.security-card strong {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.security-card span {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.hidden {
    display: none !important;
}

.pa-root {
    transition: all 0.5s var(--swift);
}

.tip-container {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tip-container p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}