/* aviso_lgpd.css */
#aviso-lgpd {
    position: fixed;
    bottom: 2vh;
    left: 2vw;
    right: 2vw;
    width: auto;
    max-width: 96vw;
    background-color: #212529; /* Cinza escuro padrão Bootstrap */
    color: #fff;
    padding: 16px 5vw;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    transition: transform 0.4s ease, opacity 0.4s ease;
    border-radius: 0.25rem;
    box-sizing: border-box;
}
#aviso-lgpd p {
    font-size: 1rem;
    line-height: 1.5;
}

#aceitar-lgpd {
    display: inline-block;
    font-weight: 400;
    color: #fff !important; /* Garante texto branco */
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: #28a745 !important;
    border: 1px solid #28a745 !important;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    margin-left: 20px;
    outline: none !important; /* Remove a borda azul/preta de foco do browser */
    box-shadow: none;
    transition: all 0.15s ease-in-out;
}

/* Hover: Quando o mouse passa por cima */
#aceitar-lgpd:hover {
    background-color: #218838 !important;
    border-color: #1e7e34 !important;
}

/* Active/Focus: O exato momento do clique ou após clicar */
#aceitar-lgpd:active, 
#aceitar-lgpd:focus {
    background-color: #1e7e34 !important;
    border-color: #1c7430 !important;
    outline: 0 !important;
    /* Opcional: brilho suave do bootstrap, mas se quiser 
       evitar qualquer "mancha", pode deixar box-shadow: none; */
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5) !important;
}