/* ============================================
   CONSISTUP MOSKIT FORM - PADRÃO ANTIGO
   Cores claras, layout em linhas, sem cabeçalho azul
   ============================================ */

:root {
    /* AZUL PRIMÁRIO */
    --cor-primaria: #2563eb;
    --cor-primaria-escura: #1e40af;
    --cor-primaria-clara: #dbeafe;
    
    /* CORES DE STATUS */
    --cor-sucesso: #10b981;
    --cor-erro: #ef4444;
    --cor-aviso: #f59e0b;
    --cor-info: #06b6d4;
    
    /* CORES PRINCIPAIS */
    --cor-fundo: #e8eaed;
    --cor-fundo-card: #ffffff;
    --cor-borda: #d0d0d0;
    --cor-borda-escura: #b0b0b0;
    --cor-texto: #333333;
    --cor-texto-claro: #666666;
    --cor-texto-muito-claro: #999999;
    --cor-branco: #ffffff;
    
    /* SOMBRAS */
    --sombra-leve: 0 1px 2px rgba(0, 0, 0, 0.05);
    --sombra: 0 2px 4px rgba(0, 0, 0, 0.1);
    --sombra-forte: 0 4px 8px rgba(0, 0, 0, 0.12);
    
    /* TRANSIÇÃO */
    --transicao: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--cor-texto) !important;
    background-color: #e8eaed !important;
    background-image: none !important;
    line-height: 1.5;
    min-height: 100vh;
}

/* ============================================
   CONTAINER EXTERNO - Wrapper com margens
   ============================================ */
.consistup-moskit-form-wrapper {
    background-color: #f5f5f5 !important;
    background-image: none !important;
    margin: 0 !important;
    padding: 30px 80px 30px 80px !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
}

/* ============================================
   BARRA DE PROGRESSO (dentro do wrapper)
   ============================================ */
.consistup-moskit-form-wrapper .progress-bar {
    width: 100% !important;
    height: 4px !important;
    background-color: #d1d5db !important;
    border-radius: 2px !important;
    margin: 0 0 15px 0 !important;
    overflow: hidden !important;
}

.consistup-moskit-form-wrapper .progress-fill {
    height: 100% !important;
    background-color: #00a550 !important;
    transition: width 0.3s ease !important;
}

/* ============================================
   INDICADOR DE ETAPA (dentro do wrapper)
   ============================================ */
.consistup-moskit-form-wrapper .step-indicator {
    text-align: center !important;
    font-size: 12px !important;
    color: #1f2937 !important;
    margin-bottom: 20px !important;
    font-weight: normal !important;
}

.consistup-moskit-form-wrapper #stepNumber {
    font-weight: bold !important;
    color: #1f2937 !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    display: inline-block !important;
}

/* ============================================
   GARANTIR VISIBILIDADE DA BARRA E INDICADOR
   ============================================ */
.progress-bar {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.progress-fill {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.step-indicator {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#stepNumber {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ============================================
   CONTAINER PRINCIPAL DO FORMULÁRIO
   Padding: 2 cm (aproximadamente 56.69px)
   ============================================ */
.consistup-moskit-form-container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 56.69px !important;
    background-color: #ffffff !important;
    background-image: none !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
}

.consistup-moskit-form-container #stepNumber {
    display: none !important;
}

/* ============================================
   FORMULÁRIO
   ============================================ */
.consistup-form {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
}

/* ============================================
   ETAPAS
   ============================================ */
.form-step {
    display: none !important;
}

.form-step.active {
    display: block !important;
}

.form-step h2 {
    font-size: 18px !important;
    color: #333333 !important;
    margin-bottom: 15px !important;
    font-weight: bold !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #d0d0d0 !important;
}

/* ============================================
   GRUPOS DE FORMULÁRIO
   ============================================ */
.form-group {
    margin-bottom: 8px !important;
    display: flex !important;
    flex-direction: column !important;
}

.form-group label {
    font-weight: bold !important;
    margin-bottom: 5px !important;
    color: #333333 !important;
    font-size: 12px !important;
}

.form-group label .required {
    color: #ef4444 !important;
    margin-left: 2px !important;
}

/* ============================================
   CAMPOS DE ENTRADA
   ============================================ */
.form-group input,
.form-group select,
.form-group textarea {
    padding: 8px 10px !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 3px !important;
    font-size: 13px !important;
    font-family: Arial, sans-serif !important;
    transition: var(--transicao) !important;
    background-color: #ffffff !important;
    background-image: none !important;
    color: #333333 !important;
    width: 100% !important;
}

#nome_completo {
    padding: 8px 10px !important;
    font-size: 13px !important;
    min-height: auto !important;
    width: 100% !important;
    height: auto !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999 !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1) !important;
    background-color: #ffffff !important;
}

.form-group input:hover:not(:focus),
.form-group select:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
    border-color: #b0b0b0 !important;
}

/* ============================================
   CAMPOS COM ERRO
   ============================================ */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444 !important;
    background-color: #fff5f5 !important;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1) !important;
}

/* ============================================
   MENSAGENS
   ============================================ */
.error-message,
.success-message {
    font-size: 11px !important;
    margin-top: 3px !important;
    display: none !important;
    font-weight: normal !important;
}

.error-message {
    color: #ef4444 !important;
}

.success-message {
    color: #10b981 !important;
}

.error-message.show,
.success-message.show {
    display: block !important;
}

/* ============================================
   GRID - LAYOUT EM LINHAS (DISTRIBUIÇÃO IGUAL)
   ============================================ */
.form-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
    width: 100% !important;
}

.form-row .form-group {
    margin-bottom: 0 !important;
    width: 100% !important;
}

.form-row-2 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
    width: 100% !important;
}

.form-row-2 .form-group {
    margin-bottom: 0 !important;
    width: 100% !important;
}

.form-row-1 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
    width: 100% !important;
}

.form-row-1 .form-group {
    margin-bottom: 0 !important;
    width: 100% !important;
}

/* ============================================
   TEXTAREA
   ============================================ */
.form-group textarea {
    resize: vertical !important;
    min-height: 80px !important;
    width: 100% !important;
    padding: 8px 10px !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 3px !important;
    font-size: 13px !important;
    font-family: Arial, sans-serif !important;
    background-color: #ffffff !important;
    color: #333333 !important;
    transition: var(--transicao) !important;
}

.form-group textarea:focus {
    outline: none !important;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1) !important;
}

.form-group textarea:hover:not(:focus) {
    border-color: #b0b0b0 !important;
}

/* ============================================
   UPLOAD
   ============================================ */
.file-upload-wrapper {
    position: relative !important;
    display: inline-block !important;
    width: 100% !important;
}

.file-upload-input {
    display: none !important;
}

.file-upload-label {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    padding: 25px !important;
    border: 2px dashed #2563eb !important;
    border-radius: 4px !important;
    background-color: #f0f7ff !important;
    cursor: pointer !important;
    transition: var(--transicao) !important;
    font-weight: normal !important;
    color: #2563eb !important;
    gap: 8px !important;
}

.file-upload-label:hover {
    background-color: #e0efff !important;
    border-color: #1e40af !important;
}

.file-upload-label i {
    font-size: 24px !important;
}

.file-name {
    margin-top: 8px !important;
    font-size: 11px !important;
    color: #666666 !important;
}

/* ============================================
   CHECKBOX E RADIO
   ============================================ */
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    width: 14px !important;
    height: 14px !important;
    margin-right: 6px !important;
    cursor: pointer !important;
    accent-color: #2563eb !important;
}

.checkbox-group,
.radio-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.checkbox-item,
.radio-item {
    display: flex !important;
    align-items: center !important;
    padding: 8px !important;
    border-radius: 3px !important;
    transition: var(--transicao) !important;
    background-color: #f9f9f9 !important;
}

.checkbox-item:hover,
.radio-item:hover {
    background-color: #f0f7ff !important;
}

.checkbox-item label,
.radio-item label {
    margin: 0 !important;
    font-weight: normal !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    font-size: 13px !important;
}

/* ============================================
   BOTÕES - ESTILO ÁGUA (GLASSMORPHISM)
   ============================================ */
.form-buttons {
    display: flex !important;
    gap: 12px !important;
    margin-top: 20px !important;
    justify-content: space-between !important;
}

.btn {
    padding: 12px 24px !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    min-height: 44px !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    flex: 1 !important;
}

.btn:hover:not(:disabled) {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(15px) !important;
}

.btn:active:not(:disabled) {
    transform: translateY(-1px) !important;
}

.btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

/* ============================================
   BOTÃO ANTERIOR (CINZA)
   ============================================ */
.btn-secondary {
    background: linear-gradient(135deg, rgba(208, 208, 208, 0.7) 0%, rgba(176, 176, 176, 0.7) 100%) !important;
    color: #333333 !important;
}

.btn-secondary:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(208, 208, 208, 0.85) 0%, rgba(176, 176, 176, 0.85) 100%) !important;
}

/* ============================================
   BOTÃO PRÓXIMO - ETAPAS 1-4 E 6 (AZUL)
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3) !important;
}

.btn-primary:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

/* ============================================
   BOTÃO ENVIAR CADASTRO - ETAPA 5 (VERDE)
   ============================================ */
.btn-submit-disabled {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
}

.btn-submit-disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2) !important;
}

.btn-submit-disabled:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

/* ============================================
   BOTÃO SUCESSO - ETAPA 6 (VERDE)
   ============================================ */
.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    font-size: 14px !important;
}

.btn-success:hover:not(:disabled) {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3) !important;
}

.btn-success:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

/* ============================================
   BOTÃO PERIGO
   ============================================ */
.btn-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.8) 0%, rgba(220, 38, 38, 0.8) 100%) !important;
    color: #ffffff !important;
}

.btn-danger:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95) 0%, rgba(220, 38, 38, 0.95) 100%) !important;
}

/* ============================================
   VISIBILIDADE DOS BOTÕES
   ============================================ */
#prevBtn {
    display: flex !important;
}

#prevBtn[style*="display: none"] {
    display: none !important;
    visibility: hidden !important;
}

#nextBtn {
    display: flex !important;
}

/* ============================================
   BOTÃO DE CHAT
   ============================================ */
.ai-chat-button {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999 !important;
}

.btn-ai-chat {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background-color: #2563eb !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: var(--sombra-forte) !important;
    transition: var(--transicao) !important;
}

.btn-ai-chat:hover {
    background-color: #1e40af !important;
    transform: scale(1.1) !important;
}

.btn-ai-chat:active {
    transform: scale(0.95) !important;
}

/* ============================================
   ALERTAS
   ============================================ */
#alertContainer {
    margin-bottom: 15px !important;
}

.alert {
    padding: 12px 14px !important;
    border-radius: 3px !important;
    margin-bottom: 15px !important;
    display: none !important;
    font-weight: normal !important;
    border-left: 3px solid !important;
    font-size: 12px !important;
}

.alert.show {
    display: block !important;
}

.alert-success {
    background-color: #ecfdf5 !important;
    color: #065f46 !important;
    border-left-color: #10b981 !important;
}

.alert-error {
    background-color: #fef2f2 !important;
    color: #7f1d1d !important;
    border-left-color: #ef4444 !important;
}

.alert-warning {
    background-color: #fffbeb !important;
    color: #78350f !important;
    border-left-color: #f59e0b !important;
}

.alert-info {
    background-color: #ecf0ff !important;
    color: #1e3a8a !important;
    border-left-color: #2563eb !important;
}

/* ============================================
   SPINNER
   ============================================ */
.spinner {
    display: none !important;
    width: 14px !important;
    height: 14px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-top-color: #ffffff !important;
    border-radius: 50% !important;
    animation: spin 0.8s linear infinite !important;
}

.spinner.show {
    display: inline-block !important;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   CAMPOS ESPECÍFICOS - PADRÃO UNIFORME
   ============================================ */
#nome_completo,
#telefone,
#email,
#cpf,
#sexo,
#data_nascimento,
#estado,
#cidade,
#bairro,
#telefone_tipo,
#email_tipo,
#escolaridade,
#categoria_cnh,
#observacoes,
#curriculo {
    padding: 8px 10px !important;
    font-size: 13px !important;
    font-family: Arial, sans-serif !important;
    height: auto !important;
    min-height: auto !important;
    width: 100% !important;
}

/* ============================================
   TEXTOS AUXILIARES
   ============================================ */
.form-text {
    font-size: 11px !important;
    color: #666666 !important;
    margin-top: 4px !important;
    font-weight: normal !important;
    display: block !important;
    width: 100% !important;
}

.form-text.success {
    color: #10b981 !important;
}

.form-text.error {
    color: #ef4444 !important;
}

.form-text a {
    color: #2563eb !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: var(--transicao) !important;
}

.form-text a:hover {
    color: #1e40af !important;
    text-decoration: underline !important;
}

/* ============================================
   LINKS PARA ADICIONAR TELEFONE E EMAIL
   ============================================ */
.add-phone-link,
.add-email-link {
    color: #2563eb !important;
    cursor: pointer !important;
    font-size: 12px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    margin-top: 8px !important;
    display: inline-block !important;
    transition: var(--transicao) !important;
    pointer-events: auto !important;
    user-select: none !important;
}

.add-phone-link:hover,
.add-email-link:hover {
    color: #1e40af !important;
    text-decoration: underline !important;
}

/* ============================================
   CONTAINERS DE TELEFONES E EMAILS ADICIONAIS
   ============================================ */
.phone-container,
.email-container {
    margin-bottom: 12px !important;
    padding: 0 !important;
    background-color: transparent !important;
    border-radius: 0 !important;
}

.phone-item,
.email-item {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 8px !important;
    padding: 0 !important;
    background-color: transparent !important;
    gap: 2px !important;
}

.phone-input-group,
.email-input-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    margin-bottom: 0px !important;
}

.phone-input,
.phone-type,
.email-input,
.email-type {
    padding: 8px 10px !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 3px !important;
    font-size: 13px !important;
    font-family: Arial, sans-serif !important;
    background-color: #ffffff !important;
    color: #333333 !important;
    transition: var(--transicao) !important;
    width: 100% !important;
}

.phone-input:focus,
.phone-type:focus,
.email-input:focus,
.email-type:focus {
    outline: none !important;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1) !important;
}

.phone-input:hover:not(:focus),
.phone-type:hover:not(:focus),
.email-input:hover:not(:focus),
.email-type:hover:not(:focus) {
    border-color: #b0b0b0 !important;
}

/* ============================================
   LINKS PARA REMOVER TELEFONE E EMAIL
   ============================================ */
.remove-phone-link,
.remove-email-link {
    color: #ef4444 !important;
    cursor: pointer !important;
    font-size: 10px !important;
    text-decoration: none !important;
    font-weight: normal !important;
    transition: var(--transicao) !important;
    pointer-events: auto !important;
    user-select: none !important;
    display: block !important;
    text-align: right !important;
    margin-top: -22px !important;
    margin-bottom: 0px !important;
}

.remove-phone-link:hover,
.remove-email-link:hover {
    color: #dc2626 !important;
    text-decoration: underline !important;
}

/* ============================================
   FILE ANALYSIS
   ============================================ */
.file-analysis {
    background-color: #f0f7ff !important;
    border-left: 3px solid #2563eb !important;
    border-radius: 4px !important;
    padding: 15px !important;
    margin-top: 12px !important;
    margin-bottom: 12px !important;
}

.analysis-score {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid #e5e7eb !important;
    gap: 12px !important;
}

.score-label {
    font-size: 13px !important;
    font-weight: bold !important;
    color: #333333 !important;
    white-space: nowrap !important;
}

.score-bar {
    flex: 1 !important;
    height: 8px !important;
    background-color: #e5e7eb !important;
    border-radius: 4px !important;
    overflow: hidden !important;
}

.score-fill {
    height: 100% !important;
    background-color: #10b981 !important;
    transition: width 0.3s ease !important;
}

.score-value {
    font-size: 13px !important;
    font-weight: bold !important;
    color: #10b981 !important;
    min-width: 40px !important;
    text-align: right !important;
}

.analysis-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
}

.analysis-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    font-size: 12px !important;
    color: #666666 !important;
}

.analysis-item-icon {
    font-size: 14px !important;
    flex-shrink: 0 !important;
}

.analysis-item-text {
    flex: 1 !important;
}

.analysis-item.good .analysis-item-icon {
    color: #10b981 !important;
}

.analysis-item.warning .analysis-item-icon {
    color: #f59e0b !important;
}

.analysis-item.error .analysis-item-icon {
    color: #ef4444 !important;
}

/* ============================================
   BOTÃO REMOVER SUTIL
   ============================================ */
.btn-remove-subtle {
    display: inline-block !important;
    color: #ef4444 !important;
    font-size: 11px !important;
    text-decoration: none !important;
    font-weight: normal !important;
    cursor: pointer !important;
    transition: var(--transicao) !important;
    padding: 4px 8px !important;
    border-radius: 3px !important;
}

.btn-remove-subtle:hover {
    color: #dc2626 !important;
    text-decoration: underline !important;
    background-color: #fef2f2 !important;
}

/* ============================================
   OPTIONAL LABEL
   ============================================ */
.optional {
    color: #999999 !important;
    font-weight: normal !important;
    font-size: 11px !important;
}

/* ============================================
   NO FILE WARNING
   ============================================ */
.no-file-warning {
    background-color: #fffbeb !important;
    border-left: 4px solid #f59e0b !important;
    border-radius: 4px !important;
    padding: 12px 14px !important;
    margin-top: 12px !important;
    display: none !important;
}

.no-file-warning-header {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-weight: bold !important;
    font-size: 13px !important;
    color: #92400e !important;
    margin-bottom: 8px !important;
}

.no-file-warning-header span {
    font-size: 16px !important;
}

.no-file-warning-content {
    font-size: 12px !important;
    color: #78350f !important;
    line-height: 1.5 !important;
}

.no-file-warning-content strong {
    font-weight: bold !important;
    color: #92400e !important;
}

/* ============================================
   LGPD - TERMO DE CONSENTIMENTO
   ============================================ */
.lgpd-container {
    background-color: #f0f7ff !important;
    padding: 15px !important;
    border-radius: 4px !important;
    margin-bottom: 15px !important;
    border-left: 3px solid #2563eb !important;
}

.lgpd-container h3 {
    color: #2563eb !important;
    margin-bottom: 10px !important;
    font-size: 14px !important;
    font-weight: bold !important;
    text-align: center !important;
}

.lgpd-container h4 {
    color: #1e40af !important;
    margin-top: 12px !important;
    margin-bottom: 8px !important;
    font-size: 12px !important;
    font-weight: bold !important;
}

.lgpd-content {
    font-size: 11px !important;
    color: #666666 !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    margin-bottom: 10px !important;
    padding: 12px !important;
    background-color: #ffffff !important;
    border-radius: 3px !important;
    border: 1px solid #d0d0d0 !important;
    line-height: 1.6 !important;
}

.lgpd-content p {
    margin-bottom: 10px !important;
}

.lgpd-content ul {
    margin-left: 20px !important;
    margin-bottom: 10px !important;
}

.lgpd-content li {
    margin-bottom: 6px !important;
}

/* ============================================
   INDICADOR DE LEITURA
   ============================================ */
.lgpd-read-indicator {
    text-align: center !important;
    padding: 8px !important;
    background-color: #fffbeb !important;
    border-radius: 3px !important;
    margin-bottom: 12px !important;
}

.read-status {
    font-size: 12px !important;
    color: #92400e !important;
    font-weight: bold !important;
}

.read-status.read-complete {
    color: #10b981 !important;
}

/* ============================================
   AVISO DE LEITURA OBRIGATÓRIA
   ============================================ */
.termo-warning {
    background-color: #fef2f2 !important;
    border-left: 4px solid #ef4444 !important;
    border-radius: 4px !important;
    padding: 12px 14px !important;
    margin-bottom: 12px !important;
    display: none !important;
}

.termo-warning-header {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-weight: bold !important;
    font-size: 13px !important;
    color: #7f1d1d !important;
    margin-bottom: 8px !important;
}

.termo-warning-header span {
    font-size: 16px !important;
}

.termo-warning-content {
    font-size: 12px !important;
    color: #7f1d1d !important;
}

/* ============================================
   GRUPO DE CHECKBOXES LGPD
   ============================================ */
.lgpd-checkbox-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 12px !important;
}

.lgpd-checkbox {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    padding: 10px !important;
    background-color: #f9f9f9 !important;
    border-radius: 3px !important;
    transition: var(--transicao) !important;
}

.lgpd-checkbox:hover {
    background-color: #f0f7ff !important;
}

.lgpd-checkbox input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    margin-top: 2px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    accent-color: #2563eb !important;
}

.lgpd-checkbox input[type="checkbox"]:disabled {
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}

.lgpd-checkbox label {
    margin: 0 !important;
    cursor: pointer !important;
    font-size: 12px !important;
    font-weight: normal !important;
    line-height: 1.4 !important;
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.lgpd-checkbox input[type="checkbox"]:disabled ~ label {
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

.checkbox-label-text {
    color: #333333 !important;
}

.checkbox-required {
    color: #ef4444 !important;
    font-weight: bold !important;
}

.checkbox-optional {
    color: #999999 !important;
    font-size: 10px !important;
    font-weight: normal !important;
}

/* ============================================
   BLOCO PERSUASIVO - ETAPA COMPLEMENTAR
   ============================================ */
.persuasive-block {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%) !important;
    border-left: 4px solid #f59e0b !important;
    border-radius: 6px !important;
    padding: 15px 14px !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1) !important;
}

.persuasive-header {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 15px !important;
}

.persuasive-icon {
    font-size: 28px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

.persuasive-text-block h3 {
    margin: 0 0 5px 0 !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: #92400e !important;
}

.persuasive-text-block p {
    margin: 0 !important;
    font-size: 13px !important;
    color: #78350f !important;
    line-height: 1.5 !important;
}

.persuasive-checkbox {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    padding: 10px !important;
    background-color: rgba(255, 255, 255, 0.7) !important;
    border-radius: 4px !important;
    transition: var(--transicao) !important;
}

.persuasive-checkbox:hover {
    background-color: rgba(255, 255, 255, 0.9) !important;
}

.persuasive-checkbox input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    margin-top: 2px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    accent-color: #f59e0b !important;
}

.persuasive-checkbox label {
    margin: 0 !important;
    cursor: pointer !important;
    font-size: 12px !important;
    font-weight: normal !important;
    line-height: 1.4 !important;
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    color: #78350f !important;
}
/* ============================================
   CHECKBOX GROUP - LAYOUTS EM GRID
   ============================================ */
.checkbox-group-3col {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
}

.checkbox-group-4col {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
}

.checkbox-group-5col {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 12px !important;
}

.checkbox-group-3col .checkbox-item,
.checkbox-group-4col .checkbox-item,
.checkbox-group-5col .checkbox-item {
    margin-bottom: 0 !important;
}

/* ============================================
   NOVO LAYOUT DE DEFICIÊNCIA
   ============================================ */
.pcd-checkboxes {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    line-height: 1.5 !important;
}

.radio-item-custom {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 12px !important;
    border-radius: 4px !important;
    background-color: #f9f9f9 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.radio-item-custom:hover {
    background-color: #f0f7ff !important;
    border-left: 3px solid #2563eb !important;
    padding-left: 9px !important;
}

.radio-item-custom input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    margin-top: 2px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    accent-color: #2563eb !important;
}

.radio-item-custom label {
    cursor: pointer !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0px !important;
    line-height: 1.0 !important;
}

.radio-item-custom label strong {
    color: #333333 !important;
    font-size: 13px !important;
}