/* Estilo para o banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    z-index: 1000;
    display: none; /* Inicialmente oculto */
}

.cookie-content a {
    color: #FFD700;
    text-decoration: none;
}

.cookie-content button {
    background-color: #FFD700;
    border: none;
    color: black;
    padding: 5px 10px;
    cursor: pointer;
    margin-left: 15px;
}

.cookie-content button:hover {
    background-color: #FFC107;
}
