/* ======================================== */
/* ===== POPUP PROMOCIONAL - PRUEBA ======= */
/* ======================================== */

.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999 !important;
    display: none !important;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.promo-popup.active {
    display: flex !important;
}

.promo-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.promo-popup-content {
    position: relative;
    background: white;
    border-radius: 24px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    z-index: 10;
     transform: scale(0.95) translateY(20px);
     transition: transform 0.3s ease, opacity 0.3s ease;
}

.promo-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.promo-popup-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.promo-popup-close svg {
    width: 20px;
    height: 20px;
}

.promo-popup-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.promo-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-popup-body {
    padding: 2rem 2.5rem 2.5rem;
    text-align: center;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.promo-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-800);
    margin: 0 0 0.8rem 0;
}

.promo-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.promo-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.promo-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
}

.promo-btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--gray-200);
    display: inline-block;
}

.promo-footer {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .promo-popup-image {
        height: 180px;
    }
    
    .promo-popup-body {
        padding: 1.5rem;
    }
    
    .promo-title {
        font-size: 1.5rem;
    }
    
    .promo-actions {
        flex-direction: column;
    }
    
    .promo-btn-primary,
    .promo-btn-secondary {
        width: 100%;
        text-align: center;
    }
}