.cookie-banner {
    position: fixed;
    top: 0; /* Mudei de bottom para top */
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.95); /* Coloquei 0.95 de opacidade para um leve efeito elegante, se quiser 100% sólido use #2c3e50 */
    color: #ffffff;
    z-index: 9999;
    display: none;
    
    /* A mágica do Flexbox para centralizar no meio da tela */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    font-family: 'Roboto', sans-serif;
}

.cookie-banner p {
    font-size: 18px; /* Aumentei um pouco já que tem a tela toda */
    max-width: 600px; /* Evita que a frase ocupe o monitor de ponta a ponta */
    text-align: center;
    margin: 0 0 25px 0; /* Cria um espaço entre o texto e o botão */
    line-height: 1.5;
}

.cookie-banner button {
    background-color: #3498db; /* Azul combinando com botões típicos de sistema */
    color: white;
    border: none;
    padding: 8px 24px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s;
    font-family: 'Roboto', sans-serif;
}
.cookie-banner button:hover {
    background-color: #2980b9;
}

@media (max-width: 768px) {
    .cookie-banner p {
        display: block;
        margin: 0 0 10px 0;
    }
}