/* Estilos para o popup de verificação de idade */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.age-verification-container {
    background: #481421;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 2.5rem;
    animation: fadeInUp 0.4s ease-out;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-verification-logo {
    max-width: 200px;
    margin: 0 auto 1.5rem;
    filter: brightness(0) invert(1);
}

.age-verification-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.age-verification-message {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.5;
}

.age-verification-button {
    background: #ffffff;
    color: #481421;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: normal
}

.age-verification-button:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.age-verification-icon {
    margin-right: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .age-verification-container {
        padding: 2rem;
        width: 85%;
    }
    
    .age-verification-title {
        font-size: 1.5rem;
    }
    
    .age-verification-message {
        font-size: 1rem;
    }
    
    .age-verification-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .age-verification-container {
        padding: 1.5rem;
        width: 90%;
    }
    
    .age-verification-logo {
        max-width: 150px;
    }
} 