/* Container Geral do Banner */
.cookie-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Conteúdo centralizado */
.cookie-content {
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.cookie-content p {
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

/* Botão de Aceitar */
.cookie-btn {
    background-color: #0088CC;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.cookie-btn:hover {
    background-color: #149CE0;
}

/* Classe utilitária para esconder o banner */
.hide-banner {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}
