/* ===== POPUP DE OFERTA ===== */

#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#popupOFerta {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: fadeIn 0.5s ease;
    border-radius: 25px;
}

#popupOFerta img#popup-img {
    width: 100%;
    max-width: 480px;
    border-radius: 25px;
    height: auto;
}

#close-btn {
    position: absolute;
    top: -40px;
    right: -30px;
    font-size: 32px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
}

#close-btn:hover {
    color: red;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ===== MEDIA QUERIES PARA RESPONSIVE ===== */

@media (max-width: 480px) {
    #popupOFerta {
        max-width: 90%;
    }
    #close-btn {
        font-size: 30px;
        width: 28px;
        height: 28px;
        line-height: 28px;
    }
}