.iacf-wizard { margin: 20px 0; }
.iacf-step { border: 1px solid #e5e7eb; padding: 16px; border-radius: 8px; margin-bottom: 16px; }
.iacf-wizard-nav { display:flex; gap:8px; justify-content:flex-end; }
.iacf-error { border-color: #dc2626 !important; }
.iacf-hint { font-size: 12px; color:#6b7280; margin-top: -10px; }

fieldset.iacf-step:nth-child(1) p:nth-child(2) {
    display: none;
}
.iacf-field select {
    padding: 10px 5px;
}
fieldset.iacf-step[data-step="1"] p:nth-child(2) {
    display: none;
}
button.button.button-primary.iacf-submit {
    padding: 10px 0;
}
.iacf-wizard {
    max-width: 640px;
    margin: 2rem auto;
    padding: 1.5rem 1.75rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.iacf-wizard-header {
    margin-bottom: 1.5rem;
}

.iacf-wizard-steps {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.iacf-wizard-step-indicator {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    border-radius: 999px;
    border: 1px solid #ddd;
    font-size: 12px;
    background: #f7f7f7;
    opacity: 0.7;
}

.iacf-wizard-step-indicator .iacf-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ccc;
    margin-bottom: 0.25rem;
}

.iacf-wizard-step-indicator.is-active {
    border-color: #2271b1;
    background: #e9f5ff;
    opacity: 1;
}

.iacf-wizard-step-indicator.is-active .iacf-step-index {
    border-color: #2271b1;
}

.iacf-wizard-step-indicator.is-completed {
    border-color: #46b450;
    background: #e7f7eb;
    opacity: 1;
}

.iacf-wizard-step-indicator.is-completed .iacf-step-index {
    border-color: #46b450;
}

.iacf-wizard-step-counter {
    margin-top: 0.75rem;
    font-size: 13px;
    color: #666;
}

/* Campos */
.iacf-field {
    margin-bottom: 1rem;
}

.iacf-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.iacf-field input,
.iacf-field select,
.iacf-field textarea {
    width: 100%;
    max-width: 100%;
}

.iacf-field-inline {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
}

.iacf-field-inline .iacf-field-main {
    flex: 1;
}

.iacf-field-inline .iacf-field-action {
    flex: 0 0 auto;
}

/* Errores */
.iacf-required {
    color: #d63638;
}

.iacf-error-msg {
    display: block;
    margin-top: 0.25rem;
    font-size: 12px;
    color: #d63638;
}

.iacf-field-error input,
.iacf-field-error select,
.iacf-field-error textarea {
    border-color: #d63638 !important;
    box-shadow: 0 0 0 1px rgba(214,54,56,.3);
}

/* Hints */
.iacf-hint {
    font-size: 12px;
    color: #666;
    margin-top: 0.25rem;
}

/* Navegación */
.iacf-wizard-nav {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}
