/* Banner de consentimento de cookies (LGPD) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 1.25rem;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    border-top: 1px solid #e5e7eb;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-banner-text {
    flex: 1 1 280px;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #374151;
}

.cookie-banner-text a {
    color: #2563eb;
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #1d4ed8;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s, color 0.2s, transform 0.15s;
}

.cookie-banner-btn:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.cookie-banner-btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    color: #fff;
}

.cookie-banner-btn-primary:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.cookie-banner-btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

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

@media (max-width: 576px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-banner-actions {
        justify-content: center;
    }
}
