/* Banner de Consentimento de Cookies - Versão Minimalista */
#cookie-consent-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 9999;
    background: white;
    color: #1f2937;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 420px;
    transform: translateY(120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
}

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

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

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-banner-text {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.cookie-banner-text .cookie-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-banner-text-content h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #111827;
}

.cookie-banner-text-content p {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.4;
}

.cookie-banner-text-content a {
    color: #F5B800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-text-content a:hover {
    color: #D9A300;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

.cookie-btn-primary {
    background: #F5B800;
    color: #0b203c;
}

.cookie-btn-primary:hover {
    background: #D9A300;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 184, 0, 0.3);
}

.cookie-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.cookie-btn-secondary:hover {
    background: #e5e7eb;
}

/* Dark mode */
.dark #cookie-consent-banner {
    background: #1f2937;
    border-color: #374151;
}

.dark .cookie-banner-text-content h3 {
    color: white;
}

.dark .cookie-banner-text-content p {
    color: #9ca3af;
}

.dark .cookie-btn-secondary {
    background: #374151;
    color: #d1d5db;
    border-color: #4b5563;
}

.dark .cookie-btn-secondary:hover {
    background: #4b5563;
}

/* Responsividade */
@media (max-width: 640px) {
    #cookie-consent-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}

@media (max-width: 380px) {
    .cookie-banner-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
