/* ============================================================
   promo-popup.css — Popup promocional mundialista
   Compartido: PDC y Tulum
   ============================================================ */

/* ── OVERLAY ─────────────────────────────────────────────── */
#promo-popup-overlay {
    position: fixed;
    inset: 0;                          /* top/right/bottom/left: 0 */
    background: rgba(0, 0, 0, 0.72);
    z-index: 10500;                    /* sobre el branch-selector (9999) y loading (9999) */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

#promo-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ── CONTENEDOR ──────────────────────────────────────────── */
#promo-popup {
    position: relative;
    width: 100%;
    max-width: 480px;                  /* desktop */
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(18px) scale(0.97);
    transition: transform 0.28s ease;
    background: #000;                  /* fallback mientras carga imagen */
}

#promo-popup-overlay.is-visible #promo-popup {
    transform: translateY(0) scale(1);
}

/* ── IMAGEN CLICKEABLE ───────────────────────────────────── */
#promo-popup-link {
    display: block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

#promo-popup-img {
    display: block;
    width: 100%;
    height: auto;                      /* respeta proporciones reales de la imagen */
    border-radius: 14px;
    aspect-ratio: 768 / 1024;         /* 3/4 — reserva el espacio antes de que cargue (evita layout shift) */
}

/* ── BOTÓN CERRAR ────────────────────────────────────────── */
#promo-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s ease, transform 0.18s ease;
    z-index: 1;
    /* Área táctil mínima recomendada: 44px — ampliar con padding */
    padding: 0;
    /* Accesibilidad: foco visible */
    outline-offset: 3px;
}

#promo-popup-close:hover {
    background: rgba(0, 0, 0, 0.82);
    transform: scale(1.1);
}

#promo-popup-close:focus-visible {
    outline: 2px solid #fff;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 520px) {
    #promo-popup {
        max-width: 100%;               /* ocupa todo el ancho en móvil */
        border-radius: 10px;
    }

    #promo-popup-img {
        border-radius: 10px;
    }

    #promo-popup-close {
        width: 36px;
        height: 36px;
        font-size: 20px;
        top: 8px;
        right: 8px;
    }
}

/* ── PREFERENCIA: SIN ANIMACIONES ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    #promo-popup-overlay,
    #promo-popup {
        transition: none;
    }
}