/* Sistema de Banners VolatusPay */
.banner-slider {
    width: 100%;
    max-width: 1200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
    background: linear-gradient(135deg, #8B5CF6 0%, #5B21B6 100%);
}

.banner-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    opacity: 0;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide:hover {
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.banner-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.banner-placeholder i {
    margin-right: 12px;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .banner-slider {
        height: 150px;
        margin: 0 15px;
    }
    
    .banner-placeholder {
        font-size: 1.2rem;
    }
    
    .banner-placeholder i {
        font-size: 1.5rem;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: 120px;
        margin: 0 10px;
    }
    
    .banner-placeholder {
        font-size: 1rem;
        flex-direction: column;
    }
    
    .banner-placeholder i {
        margin-right: 0;
        margin-bottom: 8px;
    }
}