
#cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050; /* Aumentado para ficar acima do footer (z-index: 1030) */
    display: none; /* Oculto por padrão */
}

.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background-color: #fff;
    color: #333;
    padding: 30px;
    text-align: left; /* Alinhamento à esquerda para melhor leitura */
    z-index: 1051; /* Aumentado para ficar acima do overlay e do footer */
    display: none; /* Oculto por padrão */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.6;
}

.cookie-banner .button-container {
    text-align: right; /* Alinha o botão à direita */
}

.cookie-banner button {
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px; /* Espaço entre o texto e o botão */
}
