/* ── LGPD Cookie Consent Banner ── */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    font-family: 'Inter', sans-serif;
}
#cookie-banner.cookie-visible {
    transform: translateY(0);
}
.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    min-width: 260px;
}
.cookie-text p {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}
.cookie-text a {
    color: #0099dd;
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-primary {
    background: #0099dd;
    color: #fff;
}
.cookie-btn-outline {
    background: transparent;
    color: #64748b;
    border: 1.5px solid #cbd5e1;
}
@media (max-width: 600px) {
    .cookie-inner { flex-direction: column; gap: 12px; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}
