/* =====================================================
   COOKIE CONSENT BANNER - Minimalista Profissional
   ===================================================== */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f1f1f;
    color: #e0e0e0;
    padding: 18px 40px;
    z-index: 99999;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-banner.hide {
    transform: translateY(100%);
}

.cookie-consent-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #b0b0b0;
}

.cookie-consent-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent-text a:hover {
    color: #90caf9;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-accept-btn {
    background: #fff;
    color: #1f1f1f;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    background: #e0e0e0;
}

.cookie-privacy-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    padding: 12px 20px;
    border: 1px solid #444;
    border-radius: 4px;
    transition: all 0.2s;
    white-space: nowrap;
}

.cookie-privacy-link:hover {
    color: #fff;
    border-color: #666;
    background: rgba(255,255,255,0.05);
}

/* Mobile responsivo */
@media (max-width: 768px) {
    .cookie-consent-banner {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-consent-text {
        font-size: 13px;
    }
    
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-accept-btn {
        padding: 14px 32px;
    }
}


/* =====================================================
   BANNER SLIDER - NAVEGAÇÃO (Setas e Dots)
   ===================================================== */

/* Navegação do Slider - Setas */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #fff;
}

.banner-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.banner-nav.prev {
    left: 30px;
}

.banner-nav.next {
    right: 30px;
}

.banner-nav svg {
    width: 24px;
    height: 24px;
}

/* Mobile: Esconder setas */
@media (max-width: 768px) {
    .banner-nav {
        display: none;
    }
}


/* =====================================================
   ANIMAÇÕES
   ===================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-slide.active .banner-content {
    animation: fadeInUp 0.8s ease 0.2s both;
}