        /* Estilos para o indicador de etapas */
        .step-indicator {
            display: flex;
            flex-direction: row;
            align-items: center;
        }

        .step {
            width: 30px;
            height: 30px;
            background-color: #e2e2e2;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 18px;
            margin-right: 10px;
            color: #919090;
        }

        .step.active {
            background-color: #dc4c64;
            color: #fff;
        }

        .step-title {
            margin-right: 10px;
        }
        .step-title.active {
            font-weight: bold;
        }

        .step-line {
            height: 2px;
            background-color: #e2e2e2;
            flex-grow: 1;
            margin-right: 10px;

        }
