/* ============================================================
   BANNER DE COOKIES
   ============================================================ */

#cookie_banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #ddd;
    font-size: 13px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    z-index: 9999;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}

#cookie_banner p {
    margin: 0;
    line-height: 1.5;
    flex: 1;
    min-width: 220px;
}

#cookie_banner a {
    color: #a8d5b0;
    text-decoration: underline;
}

#cookie_banner a:hover {
    color: #fff;
}

#cookie_btn_aceitar {
    background: #5a9f67;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}

#cookie_btn_aceitar:hover {
    background: #4a8a56;
}