.modal-overlay {
    display: none;
    /* Esconde o modal inicialmente */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Preto quase opaco */
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* Estilo do modal */
.modal {
    background-color: #222;
    /* Quase preto */
    padding: 20px;
    border-radius: 10px;
    color: #ddd;
    /* Quase branco */
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 9900 !important;
}

/* Botão de fechar */
.close-modal,
.confirm-modal {
    background-color: #444;
    /* Cinza escuro */
    border: none;
    color: #ddd;
    /* Quase branco */
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
}

/* Botão de abrir modal */
.open-modal {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #555;
    /* Cinza */
    color: #ddd;
    /* Quase branco */
    border-radius: 5px;
    cursor: pointer;
}

/* Estilo do botão de confirmação */
.confirm-modal {
    background-color: #ff5722;
    /* Laranja */
}

#titulo_modal {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 50px;
}

#texto_modal {
    margin-bottom: 50px;
}


#botoes_confirm {
    display: flex; 
    width: 70%;
    justify-content: space-around;
    align-items: center;
    margin: auto; 
}

.cookie-consent-banner {
    z-index: 9999 !important;
    display: none; 
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 1000;
    border-top: 1px solid #222;
}

.banner-content {
    position: relative;
    z-index: 9999;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-content p {
    color: #ddd;
    margin-right: 20px;
}

.banner-button {
    cursor: pointer;
    background-color: #ff5722; /* Verde */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 20px;
}

.banner-button:hover {
    background-color: #ff5622b4;
    transition: 0.3s;
}

.close-banner {
    position: absolute;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}


@media (max-width: 480px) {
    .banner-content {
        display: block;
    }

    .banner-button {
        margin-right: 20px;
        margin-left: -10px;
    }
}