/* Estilo geral do banner (Desktop: faixa completa) */
#cookie-banner-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    color: #000;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    display: none;
}

/* Texto padrão para desktop */
.cookie-text-desktop { display: block; margin-bottom: 0; }
/* Oculta o texto mobile no desktop */
.cookie-text-mobile { display: none; }

/* Link */
#cookie-banner-container a {
    font-weight: bold;
    color: #007bff;
    text-decoration: underline;
    margin-left: 5px;
}

/* Botão ajustado para azul */
#cookie-banner-container button {
    background: #007bff; /* Azul do site */
    color: #fff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    white-space: nowrap;
    margin-top: 5px;
    transition: background 0.3s ease;
}

/* Hover no botão */
#cookie-banner-container button:hover {
    background: #0056b3; /* Azul mais escuro para hover */
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    #cookie-banner-container {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 600px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Exibe o texto mobile e oculta o desktop */
    .cookie-text-desktop { display: none; }
    .cookie-text-mobile { display: block; }
    .cookie-text-mobile p {
        margin: 0;
        text-align: center;
    }

    /* Botão ocupa 45% da largura */
    #cookie-banner-container button {
        width: 45%;
        margin-top: 10px;
    }
}