.wizard-step {
    display: none;
    animation: fadeIn 0.2s ease;
}

.wizard-step.active {
    display: block;
}

.wizard-controls {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ajuste dos botões lado a lado apenas quando não houver botão Voltar */
.wizard-controls:not(:has(.btn-back)) {
  justify-content: flex-end;
  gap: 10px;
}

.wizard-controls:not(:has(.btn-back)) button {
  margin: 0;
}

.wizard-indicator {
    text-align: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.input-error {
    border-color: var(--color-red) !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.wizard-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark, #2b2b2b);
    margin-top: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 3px solid var(--primary, #007bff);
    padding-left: 8px;
}

.wizard-section-title i {
    color: var(--primary, #007bff);
}

