/* Banner discreto e no seu estilo black & orange */
.banner-cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111; /* Preto do estúdio */
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    border-top: 3px solid #FF5C00; /* Laranja CHAGAS */
    font-family: sans-serif;
    box-sizing: border-box;
}

.banner-cookies p { margin: 0; font-size: 14px; }
.banner-cookies a { color: #FF5C00; margin-left: 5px; text-decoration: underline; }

.banner-cookies button {
    background: #000000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    margin-left: 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
}

.banner-cookies button:hover { background: #e04f00; }
/* Estilo dos links de Privacidade e Termos no Rodapé */
.footer-links a {
    color: #ffffff !important;
    text-decoration: none;
    margin: 0 10px;
    font-size: 12px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Texto do Rodapé */
.footer p {
    color: #bbbbbb;
    font-size: 13px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.footer span {
    color: #bbbbbb;
    font-size: 12px;
}