/* =======================================================
   BARRA DE PROGRESSO (MÓDULO ISOLADO)
   ======================================================= */
.axion-progress-wrapper {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin: 0 auto !important;
    padding: 10px 0 !important;
}

.axion-progress-pill {
    display: flex !important;
    align-items: center !important;
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 50px !important;
    padding: 5px !important; /* Espaço pequeno para abraçar a pílula verde */
    box-shadow: 0 2px 10px rgba(0,0,0,0.02) !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* O BLOCO INTEIRO QUE JUNTA (NÚMERO + PALAVRA + SETA) */
.axion-step-block {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 12px !important;
    border-radius: 50px !important; /* Arredonda o fundo verde quando ele existir */
    transition: 0.3s ease !important;
}

/* BOLINHA INATIVA (Cinza/Azul Claro) */
.axion-step-circle {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border: 2px solid #b3d4ff !important;
    color: #80bfff !important;
    background: transparent !important;
    transition: 0.3s ease !important;
}

.axion-step-label {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #a0a0a0 !important; 
    transition: 0.3s ease !important;
}

/* SEPARADOR INATIVO */
.axion-step-separator { 
    display: flex !important; 
    align-items: center !important; 
    color: #cccccc !important; 
    margin-left: 5px !important;
    transition: 0.3s ease !important;
}

/* =========================================
   ESTADO 1: ATIVO (AZUL - AQUI E AGORA)
   ========================================= */
.axion-step-active .axion-step-circle { 
    border-color: #0587ff !important; 
    color: #0587ff !important; 
}
.axion-step-active .axion-step-label { 
    color: #333333 !important; 
}

/* =========================================
   ESTADO 2: CONCLUÍDO (PÍLULA VERDE - JÁ PASSOU)
   ========================================= */
.axion-step-completed {
    background-color: #EAF7ED !important; /* O fundo verde claro idêntico da sua imagem */
}
.axion-step-completed .axion-step-circle { 
    border-color: #00a650 !important; 
    color: #00a650 !important; 
}
.axion-step-completed .axion-step-label { 
    color: #00a650 !important; 
}
.axion-step-completed .axion-step-separator { 
    color: #00a650 !important; /* Pinta a seta de verde também */
} 

/* RESPONSIVO MOBILE */
@media (max-width: 768px) {
    .axion-step-label { display: none !important; } /* Esconde o texto, deixa só os números no celular */
    .axion-step-block { padding: 6px !important; }
}