body {
    font-family: 'Inter', sans-serif;
}

/* --- Estilos para o Stepper (Indicador de Passos) --- */
.step-item {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.step-item:last-child {
    flex-grow: 0;
}

.step-item .step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step-item .step-line {
    height: 2px;
    flex-grow: 3;
    transition: all 0.3s ease;
    background-color: #D1D5DB;
}

/* Estado Ativo */
.step-active .step-circle {
    background-color: #447aef; /* red-500 */
    color: white;
    border-color: #447aef; /* red-500 */
}

.step-active .step-text {
    color: #447aef; /* red-500 */
    font-weight: 600;
}

/* Estado Inativo */
.step-inactive .step-circle {
    background-color: #F3F4F6; /* gray-100 */
    color: #6B7280; /* gray-500 */
    border: 2px solid #D1D5DB; /* gray-300 */
}

.step-inactive .step-line {
    background-color: #D1D5DB; /* gray-300 */
}

/* Estado Concluído */
.step-completed .step-circle {
    background-color: #22C55E; /* green-500 */
    color: white;
    border-color: #22C55E; /* green-500 */
}

.step-completed .step-line {
     background-color: #22C55E; /* green-500 */
}

.teste:focus {
    border: 2px solid #447aef;
    outline: none;
}