﻿/*------------------------------------------------------------------
    JNSOFT ENGENHARIA - Banner LGPD Profissional
-------------------------------------------------------------------*/
.lgpd-banner {
    position: fixed;
    bottom: 30px; 
    left: 20px;
    right: 20px;
    background: #ffffff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px 25px;
    z-index: 9999;
    display: none; /* Ativado via JS */
    border-left: 6px solid #feb900; /* Amarelo JNSOFT */
    border-top: 1px solid rgba(0,0,0,0.05);
    transition: opacity 0.5s ease;
}

.lgpd-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.lgpd-text {
    flex: 1;
    color: #364d59; /* Cor padrão do seu site */
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.lgpd-text a {
    color: #364d59;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #feb900;
}

.lgpd-text a:hover {
    color: #000;
    border-bottom-color: #364d59;
}

.lgpd-buttons {
    display: flex;
    gap: 12px;
}

.btn-accept, .btn-refuse {
    padding: 12px 25px;
    border-radius: 50px; /* Estilo arredondado dos seus botões */
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

/* Botão Aceitar (Amarelo JNSOFT) */
.btn-accept {
    background-color: #feb900;
    color: #364d59;
}

.btn-accept:hover {
    background-color: #364d59;
    color: #feb900;
}

/* Botão Recusar (Discreto) */
.btn-refuse {
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.btn-refuse:hover {
    background-color: #e2e6ea;
    color: #364d59;
}

@media (max-width: 768px) {
    .lgpd-banner { bottom: 10px; left: 10px; right: 10px; padding: 20px; }
    .lgpd-content { flex-direction: column; text-align: center; }
    .lgpd-buttons { width: 100%; flex-direction: column; }
    .btn-accept, .btn-refuse { width: 100%; }
}