/* Estilos para o processo de investimento */
.processo-steps {
    position: relative;
}

.processo-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--azul-turquesa);
    z-index: 1;
}

.processo-step {
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--azul-marinho);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    border: 5px solid var(--branco);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.processo-step:hover .step-number {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .processo-steps::before {
        width: 2px;
        height: 100%;
        top: 0;
        left: 40px;
    }
    
    .processo-step {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .step-number {
        margin: 0 20px 0 0;
    }
}
