/**
 * Popup verificación de edad - Identidad Bocatoma
 * Blanco sobre negro, tipografía bold sans-serif
 */

.age-verification-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.age-verification-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Imagen de fondo (opcional): cubre todo el overlay */
.age-verification-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Capa oscura semitransparente sobre la imagen para legibilidad */
.age-verification-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.age-verification-modal {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.age-verification-content {
    background: transparent;
}

.age-verification-logo {
    margin-bottom: 2rem;
}

.age-verification-logo img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.age-verification-question {
    font-family: "Montserrat", "Barlow", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 2rem;
    line-height: 1.3;
}

.age-verification-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-verification-btn {
    display: inline-block;
    min-width: 120px;
    padding: 0.85rem 2rem;
    font-family: "Montserrat", "Barlow", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 9999px;
    background-color: #000000;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.age-verification-btn:hover {
    background-color: #f5f5f0;
    color: #000000;
    border-color: #f5f5f0;
    transform: scale(1.02);
}

.age-verification-btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

@media (min-width: 480px) {
    .age-verification-question {
        font-size: 1.75rem;
    }

    .age-verification-logo img {
        max-width: 240px;
    }
}