/* Overlay con fondo negro semitransparente */
.descuento-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Cuando el popup está activo */
.descuento-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Contenedor del popup */
.descuento-popup-container {
    background-color: #111;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

/* Contenido del popup */
.descuento-popup-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Icono de dólar */
.descuento-popup-icon i {
    font-size: 60px;
    color: #4CAF50;
    transform: rotate(0deg);
}

/* Texto del popup */
.descuento-popup-text {
    color: white;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.descuento-popup-text h2 {
    font-size: 28px;
    margin: 0 0 10px 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.descuento-popup-text p {
    font-size: 18px;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

/* Texto de cuotas */
.cuotas-text {
    color: #FFD700;
    font-size: 16px;
    margin-top: 15px !important;
}

.cuotas-text strong {
    color: #FFD700;
    font-weight: 700;
}

/* Botón OK */
.descuento-popup-btn {
    background-color: #0a2463;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
}

.descuento-popup-btn:hover {
    background-color: #1e3b8a;
    transform: translateY(-2px);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .descuento-popup-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .descuento-popup-icon i {
        font-size: 50px;
    }
    
    .descuento-popup-text h2 {
        font-size: 24px;
    }
    
    .descuento-popup-text p {
        font-size: 16px;
    }
    
    .cuotas-text {
        font-size: 15px;
    }
    
    .descuento-popup-btn {
        padding: 10px 25px;
        font-size: 15px;
    }
}