/* LGPD - Lei Geral de Proteção de Dados */
.lgpd-consent-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.lgpd-consent-box h4 {
    color: #495057;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.lgpd-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.lgpd-terms {
    margin-bottom: 15px;
}

.checkbox-item {
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    color: #007bff;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.checkbox-item span {
    font-size: 14px;
    color: #495057;
}

.lgpd-privacy-link {
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid #e9ecef;
}

.lgpd-privacy-link a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.lgpd-privacy-link a:hover {
    text-decoration: underline;
}

/* LGPD - Seção de exclusão de conta */
.lgpd-delete-section {
    margin-top: 30px;
    padding: 20px;
    background: #fff5f5;
    border: 1px solid #f8d7da;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.lgpd-delete-section h4 {
    color: #721c24;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.lgpd-delete-description {
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lgpd-delete-section .btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lgpd-delete-section .btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

/* Responsivo */
@media (max-width: 768px) {
    .lgpd-consent-box {
        padding: 15px;
        margin: 15px 0;
    }
    
    .lgpd-consent-box h4 {
        font-size: 15px;
    }
    
    .lgpd-description {
        font-size: 13px;
    }
    
    .checkbox-item span {
        font-size: 13px;
    }
    
    .lgpd-delete-section {
        padding: 15px;
        margin-top: 20px;
    }
}
