/* ============ FORMULÁRIO INFORMAÇÕES PESSOAIS ============ */
.smf-account-form {
    padding: 0.5rem;
}

.smf-account-section {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    margin-bottom: 2rem;
    border: 1px solid var(--gray-medium);
}

.smf-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--orange-light);
}

.smf-section-icon {
    background-color: var(--orange-light);
    color: var(--orange-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    font-size: 1.25rem;
}

.smf-section-title {
    color: var(--orange-primary);
    margin: 0;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Campos do formulário */
.form-floating {
    margin-bottom: 1.25rem;
}

.form-control, .form-select {
    height: calc(3.5rem + 2px);
    padding: 1.1rem;
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.2);
}

.form-check {
    margin-bottom: 1rem;
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.15em;
}

.form-check-input:checked {
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
}

/* Responsividade */
@media (max-width: 768px) {
    .smf-section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .smf-section-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .form-floating > label {
        padding: 0.7rem 1rem;
    }
}

/* Substitua o .smf-btn-save existente por: */
#btn-salvar-info {
    padding: 0.85rem 2rem !important;
    font-size: 1rem !important;
}