/* Estilização do banner de consentimento seguindo a identidade visual do site. */
#td-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0B1220; /* fundo azul-escuro */
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    padding: 20px;
    display: flex;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.3);
}

#td-consent-banner.td-consent-hidden {
    display: none;
}

#td-consent-banner p {
    margin: 0;
    padding-right: 20px;
}

.td-consent-buttons {
    display: flex;
    align-items: center;
}

.td-consent-btn {
    background-color: #0EA5E9; /* azul principal */
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    margin-right: 10px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.td-consent-btn:hover {
    opacity: 0.85;
}

.td-consent-policy {
    color: #0EA5E9;
    text-decoration: underline;
    font-family: 'Inter', sans-serif;
    margin-left: 5px;
    align-self: center;
}
