  /* Estilo para o banner de cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: -webkit-fill-available;
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    flex: 1;
    text-align: left;
}

.cookie-banner button {
    background-color: #1e90ff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 15px;
    transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
    background-color: #4682b4;
}