/* ===== BANNER DE COOKIES ===== */
#cookie-consent-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: #1f2421;
    color: #f2efe9;
    padding: 18px 24px;
    box-shadow: 0 -2px 12px rgba(0,0,0,.2);
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    transform: translateY(0);
    transition: transform .35s ease;
}
#cookie-consent-banner.hidden { transform: translateY(120%); }
#cookie-consent-banner p { margin: 0; flex: 1 1 320px; line-height: 1.5; }
#cookie-consent-banner a { color: #2c90fb; text-decoration: underline; }
.cc-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cc-btn {
    border: none;
    padding: 9px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s;
}
.cc-btn:hover { opacity: .85; }
.cc-btn-accept { background: #2c90fb; color: #fff; }
.cc-btn-reject { background: transparent; color: #666; border: 1px solid #5a5a55; }
.cc-btn-settings { background: transparent; color: #007bff; text-decoration: underline; padding: 9px 4px; }

/* ===== PAINEL DE PREFERÊNCIAS (opcional) ===== */
#cookie-settings-panel {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
#cookie-settings-panel.open { display: flex; }
.cc-panel-box {
    background: #fff;
    color: #2b2b2b;
    max-width: 460px;
    width: 90%;
    border-radius: 8px;
    padding: 24px;
}
.cc-panel-box h3 { margin-top: 0; font-size: 18px; }
.cc-option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.cc-option-row:last-of-type { border-bottom: none; }
.cc-option-row small { display:block; color:#777; margin-top:2px; }
.cc-panel-footer { margin-top: 18px; display: flex; justify-content: flex-end; gap: 10px; }