/* ============================================
   BANNER PROMOCIONAL - ESTILOS MODERNOS
   ============================================ */

.banner-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s ease;
}

.banner-modal.show {
    visibility: visible;
    opacity: 1;
}

.banner-container {
    position: relative;
    max-width: 600px;
    width: 90%;
    background: #3a3d00;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: bannerSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.banner-modal.show .banner-container {
    transform: translateY(0);
}

@keyframes bannerSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.banner-content {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.banner-content.with-image {
    flex-direction: row;
    gap: 1.5rem;
    padding: 1.5rem;
}

.banner-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    flex: 1;
    text-align: left;
}

.banner-content.centered .banner-text {
    text-align: center;
}

.banner-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.banner-content.centered .banner-icon {
    margin: 0 auto 1rem auto;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-family: 'Barlow Condensed', sans-serif;
}

.banner-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.banner-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.banner-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    text-decoration: none;
    color: inherit;
}

.banner-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.banner-remind-later,
.banner-close-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s ease;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
}

.banner-remind-later:hover,
.banner-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .banner-content.with-image {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-image {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .banner-title {
        font-size: 1.2rem;
    }
    
    .banner-description {
        font-size: 0.8rem;
    }
    
    .banner-button {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .banner-footer {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}