﻿/*------------------------------------------------------------------
    JNSOFT ENGENHARIA - Banner LGPD Profissional (Fixo e Responsivo)
-------------------------------------------------------------------*/
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #364d59; /* Azul Profight */
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    font-family: 'Segoe UI', Roboto, sans-serif;
    border-top: 4px solid #feb900; /* Detalhe em Ouro */
    display: none; 
}

/* ALINHAMENTO */
.lgpd-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* TEXTO */
.lgpd-text {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.lgpd-text strong {
    color: #feb900;
    font-size: 15px;
}

/* BOTÕES */
.lgpd-buttons {
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

.btn-accept, .btn-refuse {
    padding: 12px 25px;
    border-radius: 4px; /* Mais quadrado, padrão sistema */
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background 0.2s; /* Apenas mudança de cor */
}

/* BOTÃO ACEITAR */
.btn-accept {
    background-color: #feb900;
    color: #364d59;
}

.btn-accept:hover {
    background-color: #e6a800; /* Sem movimentação, só cor */
}

/* BOTÃO RECUSAR */
.btn-refuse {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-refuse:hover {
    background-color: rgba(255,255,255,0.1);
}

/* RESPONSIVIDADE TOTAL */
@media (max-width: 991px) {
    .lgpd-content {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    
    .lgpd-buttons {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-accept, .btn-refuse {
        width: 100%;
        text-align: center;
    }
}