/* =========================================================
   AVISO DE COOKIES - REPROJETADO E MAIOR
   ========================================================= */
.cookie-container {
    position: fixed;
    bottom: -150px; /* Começa escondido abaixo da tela */
    left: 0;
    width: 100%;
    background: #0d1b2a; /* Azul Premium do site */
    color: white;
    padding: 30px 5%;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: bottom 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efeito suave de subida */
}

/* Classe que o JavaScript vai adicionar após 4 segundos */
.cookie-container.mostrar {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cookie-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: var(--amarelo);
    text-decoration: underline;
    font-weight: 700;
}

.btn-cookies {
    background-color: var(--vermelho-efs);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.btn-cookies:hover {
    background-color: #b92e3a;
}

/* Ajuste para Telemóveis */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .btn-cookies {
        width: 100%;
    }
}