/**
 * Banner de Cookies - Padrão Salibu
 * Design elegante com transparência e animação suave
 */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(52, 58, 64, 0.50);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    display: none;
    padding: 0;
}

.cookie-banner.show {
    display: block;
    animation: slideUpCookie 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUpCookie {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner-content {
    flex: 1;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-banner-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    font-family: inherit;
}

.cookie-banner-content a {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.cookie-banner-content a:hover {
    opacity: 0.8;
}

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

.cookie-banner-btn {
    padding: 12px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 0;
    font-family: inherit;
}

.cookie-banner-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cookie-banner-btn-accept {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.cookie-banner-btn-accept:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
}

/* Icon cookie */
.cookie-icon {
    font-size: 24px;
    margin-right: 12px;
    display: inline-block;
    vertical-align: middle;
}

/* Tablet */
@media (max-width: 991px) {
    .cookie-banner-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .cookie-banner-container {
        padding: 20px 15px;
    }
    
    .cookie-banner-content p {
        font-size: 14px;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-banner-btn {
        width: 100%;
        padding: 14px 24px;
    }
}
